Code Monkey home page Code Monkey logo

mdvrp_solver's Introduction

MDVRP

目录

├─main
│  ├─java
│  │  │  Entry.java
│  │  │
│  │  ├─Algorithm
│  │  │      Generator.java
│  │  │      GreedyGenerator.java
│  │  │      InitializeSolution.java
│  │  │      VNSALS.java
│  │  │
│  │  ├─Common
│  │  │      Customer.java
│  │  │      Depot.java
│  │  │      Node.java
│  │  │      Problem.java
│  │  │      Route.java
│  │  │      Solution.java
│  │  │
│  │  ├─Constraints
│  │  │  │  Constraint.java
│  │  │  │  HardConstraint.java
│  │  │  │  HardConstraintManager.java
│  │  │  │  HardTimeConstraint.java
│  │  │  │  HardWeightConstraint.java
│  │  │  │  SoftConstraint.java
│  │  │  │  SoftConstraintManager.java
│  │  │  │  SoftCostConstraint.java
│  │  │  │
│  │  │  ├─Insertion
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─Shift10
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─Shift20
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─Swap11
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─Swap21
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─Swap22
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─TwoOpt
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  ├─TwoOptStar1
│  │  │  │      HardTimeConstraintImpl.java
│  │  │  │      HardWeightConstraintImpl.java
│  │  │  │      SoftCostConstraintImpl.java
│  │  │  │
│  │  │  └─TwoOptStar2
│  │  │          HardTimeConstraintImpl.java
│  │  │          HardWeightConstraintImpl.java
│  │  │          SoftCostConstraintImpl.java
│  │  │
│  │  ├─IO
│  │  │      BasicConfig.java
│  │  │      ConfigReader.java
│  │  │      CourdeauInstanceReader.java
│  │  │      DataReader.java
│  │  │      IConfigReader.java
│  │  │
│  │  ├─Operators
│  │  │      ClusterRefinement1.java
│  │  │      ClusterRefinement2.java
│  │  │      ClusterRefinement3.java
│  │  │      ClusterRefinementCriteria.java
│  │  │      ClusterRefinementManager.java
│  │  │      ConstrainedOpt.java
│  │  │      Insertion.java
│  │  │      IPerturbation.java
│  │  │      OperationContext.java
│  │  │      OperationSelector.java
│  │  │      Operator.java
│  │  │      OperatorManager.java
│  │  │      RandomRuin.java
│  │  │      RecreatePerturbation.java
│  │  │      Ruin.java
│  │  │      SequentialPerturbation.java
│  │  │      Shift10.java
│  │  │      Shift20.java
│  │  │      Swap11.java
│  │  │      Swap21.java
│  │  │      Swap22.java
│  │  │      TwoOpt.java
│  │  │      TwoOptStar1.java
│  │  │      TwoOptStar2.java
│  │  │
│  │  └─Utils
│  │          RandomController.java
│  │          TimeController.java
│  │
│  └─resources
│      │  config.json
│      │  log4j.properties
│      │
│      └─Data
└─test
    └─javaEntryTest.java
        │
        ├─AlgorithmInitialSolutionGeneratorTest.javaVNSALSTest.java
        │
        ├─CommonRouteTest.java
        │
        ├─Constraints
        │  ├─Shift10
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  ├─Shift20
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  ├─Swap11
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  ├─Swap21
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  ├─Swap22
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  ├─TwoOpt
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  ├─TwoOptStar1
        │  │      SoftCostConstraintImplTest.java
        │  │
        │  └─TwoOptStar2SoftCostConstraintImplTest.java
        │
        ├─IOCourdeauInstanceReaderTest.java
        │
        └─Operators
                operationContextTest.java
                OperatorManagerTest.java

Reference

[1] A VNS-Based Algorithm with Adaptive Local Search for Solving the Multi-Depot Vehicle Routing Problem[M].

mdvrp_solver's People

Contributors

jackory avatar teal0range avatar

Stargazers

 avatar

Watchers

 avatar

mdvrp_solver's Issues

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.