https://github.com/crillab/nacre_mini
Revision 60034b4b99f7ef57fca314a9d9089bcdf6a2fee2 authored by Gaël Glorian on 28 May 2018, 11:46:10 UTC, committed by Gaël Glorian on 28 May 2018, 11:46:10 UTC
1 parent 46e267e
Raw File
Tip revision: 60034b4b99f7ef57fca314a9d9089bcdf6a2fee2 authored by Gaël Glorian on 28 May 2018, 11:46:10 UTC
Fix rare bug in conflict analysis
Tip revision: 60034b4
NEWS
2017-11-27:
 - Change parser to fit with specifications 3.0.5
 - Add annotations: decision variables
 - Add sum and alldif and expressions with expression (aka intension constraint instead of variables)
 - New callbacks:
     void beginAnnotations()
     void endAnnotations()
     void buildAnnotationDecision(vector<XVariable *> list)
     void buildConstraintOrdered(string id, vector<XVariable *> &list, vector<int> &lengths, OrderType order)
     void buildConstraintAlldifferent(string id, vector<Tree *> &list)
     void buildConstraintSum(string id, vector<Tree *> &trees, XCondition &cond)
     void buildConstraintSum(string id, vector<Tree *> &trees, vector<int> & coeffs, XCondition &cond)


2017-10-20:
 - Stop to use regex for primitive recognition
 - Canonization of intension constraints.
 - New primitives recognition
 - New option in the callback: intensionUsingString, false by default
 - New callbacks:
     void buildConstraintPrimitive(string id, OrderType op, XVariable *x, int k):  x <op> k
     void buildConstraintPrimitive(string id, XVariable *x, int min, int max, bool negated): x>=min and x<=max

back to top