Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
925 views
in Technique[技术] by (71.8m points)

or tools - Does the domain of an IntVar affect the performance of a CP-SAT solver

Dears, I normally specify big IntVar even if they are not needed:

model.NewIntVar(-93372036854775808, 9123372036854775807, 'test')

Does it affect the performances of the Solver or is it irrelevant? I mean is it better to limit the domain of the variable to a reasonable one or is it not impacting the solver logics?

Thanks

question from:https://stackoverflow.com/questions/65901184/does-the-domain-of-an-intvar-affect-the-performance-of-a-cp-sat-solver

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In general, it is better to limit the domain of the variables.

  1. step away as much as possible from overflow values
  2. perfectly tight domains are not mandatory, as presolve will tighten them. But some presolve rules may scan all values. So it is better to give small domains.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...