kperun / SATPrakPDW

Interval Constraint Propagation strategy implementation for SMTRAT
MIT License
2 stars 0 forks source link

Dynamically update guessed solution model #44

Open Verdict7 opened 7 years ago

Verdict7 commented 7 years ago

The guessed model only changes in one variable for every contraction. It might be faster to guess a solution in the beginning and update the model every time the interval of a variable changes. This way the model is always present and does not have to be recalculated every time. Also: It might be possible to check if all constraints are satisfied more often, which might reduce the overall computation time.

kperun commented 7 years ago

@Verdict7 I think here, it would be more beneficial to separate the methods. We need something like guessAssignment() and checkAssignment(), so we can incrementally check and update our model.