Giter VIP home page Giter VIP logo

Comments (7)

leonlan avatar leonlan commented on June 1, 2024 1

I can help with implementing more acceptance criteria. Will submit a pull request when I have a few ready. I'll work through the criteria presented in Santini et al. (2018) and work from top to bottom.

from alns.

N-Wouda avatar N-Wouda commented on June 1, 2024 1

What is your thoughts on this? Change to Santini's description or keep the original? I might prefer the latter, because it makes semantically more sense to have a threshold on the absolute gap instead of the relative gap.

I am inclined to keep things as they are. We might add an argument to RRT's init method to select behaviours (e.g., "original" for Dueck and Scheuer, and "santini" for Santini's implementation with the normalised thresholds - with the default being "original"). Then we get the best of both worlds!

Odd that Santini implemented such a different version, but they probably had their reasons :-).

(good job with the release of v1 of https://github.com/leonlan/pyCVRPLIB! Congrats!)

from alns.

leonlan avatar leonlan commented on June 1, 2024 1

I am inclined to keep things as they are. We might add an argument to RRT's init method to select behaviours (e.g., "original" for Dueck and Scheuer, and "santini" for Santini's implementation with the normalised thresholds - with the default being "original"). Then we get the best of both worlds!

Odd that Santini implemented such a different version, but they probably had their reasons :-).

OK, will put it on the to-do.

(good job with the release of v1 of https://github.com/leonlan/pyCVRPLIB! Congrats!)

Thanks! I learned a lot from contributing to the ALNS library (e.g., poetry, gh-actions), so thank you for that :)

from alns.

N-Wouda avatar N-Wouda commented on June 1, 2024

Should also check that implementations of current algorithms agree with the reference. For SA/HC I am pretty sure they do, for RRT not entirely.

from alns.

N-Wouda avatar N-Wouda commented on June 1, 2024

@leonlan sure! A lot of them seem superficially similar, so it might be possible to reuse a lot of code for (slightly) different acceptance criteria.

from alns.

leonlan avatar leonlan commented on June 1, 2024

Should also check that implementations of current algorithms agree with the reference. For SA/HC I am pretty sure they do, for RRT not entirely.

The description of RTRT in Santini et al. (2018) is different from the one you implemented, which follows the original paper by Dueck and Scheuer (1990).

# Santini et al. (2018)
result = (candidate.objective() - best.objective()) / best.objective() <= self._threshold

# Dueck and Scheuer (1990) 
result = (candidate.objective() - best.objective()) <= self._threshold 

What is your thoughts on this? Change to Santini's description or keep the original? I might prefer the latter, because it makes semantically more sense to have a threshold on the absolute gap instead of the relative gap.

from alns.

N-Wouda avatar N-Wouda commented on June 1, 2024

I'm closing this issue because the last series of PRs (#77, #78, #79, #80, #81, and #82) have significantly extended the number of acceptance criteria on offer. These will be released in v4.1.0, after PR #87 is merged in.

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.