Wikunia / ConstraintSolver.jl

ConstraintSolver in Julia: Blog posts ->
https://opensourc.es/blog/constraint-solver-1
MIT License
136 stars 14 forks source link

Ordering of constraints #42

Closed Wikunia closed 4 years ago

Wikunia commented 4 years ago

I assume that there can be a huge speed up if the constraints are ordered before pruning starts. The ordering should depend on the function (all_different is slower than sum but might prune more). Fewer unfixed values are normally preferred (i.e smaller graph in all_different)

Wikunia commented 4 years ago

Part of #43