Code Monkey home page Code Monkey logo

Comments (4)

N-Wouda avatar N-Wouda commented on August 17, 2024 1

I had a look at the recent changes to tsplib, @siljuovix. These turn out to have been substantial, and warrant changes on my end. I could reproduce the issue after upgrading my tsplib package to 0.7.0, and resolved the issues in #28.

Please have a look at the latest notebook, here!

from alns.

N-Wouda avatar N-Wouda commented on August 17, 2024

Hey @siljuovix, thanks for opening an issue! I can sadly not reproduce the problem locally.

From what I can tell from your tracebacks, in your notebook node is a list, rather than a tuple (lists cannot be hashed, tuples can). That's a bit weird, as they should be tuples when loaded from tsplib.

Can you check for me what data = tsplib95.load_problem('xqf131.tsp') returns? (this is called near the top of the notebook) In particular, what are the key-value types of data.node_coords?

from alns.

siljuovix avatar siljuovix commented on August 17, 2024

@N-Wouda Thank you for the fast reply!
data.node_coords is a dictionary like : 

{1: [0, 13], 2: [0, 26], 3: [0, 27], 4: [0, 39], ...}

Then after 

state = TspState(list(data.node_coords.items()), {})

node_coords passes as a list of tuples like: [(1,[0,13]), (2,[0,26]),...]

Also worth mentioning that I get a deprecation warning when using problem_load:

DeprecationWarning: Call to deprecated function (or staticmethod) load_problem. (Will be removed in newer versions. Use tsplib95.load instead.) -- Deprecated since version 7.0.0.

And this line:
optimal = data.trace_tours(solution)[0]

is also giving the following error:

TypeError Traceback (most recent call last)
in
----> 1 optimal = data.trace_tours(solution)[0]

~/.local/lib/python3.6/site-packages/tsplib95/models.py in trace_tours(self, tours)
425 """
426 solutions = []
--> 427 for tour in tours:
428 edges = utils.pairwise(tour)
429 weight = sum(self.get_weight(i, j) for i, j in edges)

TypeError: 'StandardProblem' object is not iterable

from alns.

siljuovix avatar siljuovix commented on August 17, 2024

from alns.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.