BrunoRosendo / master-thesis

Source code for my master's thesis, in the topic "Quantum algorithms for optimizing urban transportation"
MIT License
5 stars 0 forks source link

Dwave multi cvrp discarding feasible solutions #64

Closed BrunoRosendo closed 5 months ago

BrunoRosendo commented 5 months ago

Here's the example input, I'm not sure why this happens

cvrp = DWaveSolver(
        1,
        [2],
        [
            (456, 320),
            (228, 0),
            # (912, 0),
            # (0, 80),
            # (114, 80),
            # (570, 160),
            # (798, 160),
            # (342, 240),
            # (684, 240),
            # (570, 400),
            # (912, 400),
            # (114, 480),
            # (228, 480),
            # (342, 560),
            # (684, 560),
            # (0, 640),
            # (798, 640),
        ],
        [
            (0, 3, 5),
            (2, 1, 6),
        ],
        False,
        True,
    )
BrunoRosendo commented 5 months ago

Fixed for the same reason as #63