2019-06-13 15:36:14 +02:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< title > OR-Tools< / title >
< meta http-equiv = "Content-Type" content = "text/html;" / >
< meta charset = "utf-8" / >
<!-- <link rel='stylesheet' type='text/css' href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/> -->
2019-06-20 23:08:48 +02:00
< link rel = "stylesheet" type = "text/css" href = "ortools.css" title = "default" media = "screen,print" / >
2019-06-13 15:36:14 +02:00
< script type = "text/javascript" src = "jquery.js" > < / script >
< script type = "text/javascript" src = "dynsections.js" > < / script >
< / head >
< body >
< div id = "banner-container" >
< div id = "banner" >
2020-01-27 13:48:26 +01:00
< span id = "sfml" > Google OR-Tools 7.5< / span >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< div id = "content" style = "width: 100%; overflow: hidden;" >
< div style = "margin-left: 15px; margin-top: 5px; float: left; color: #145A32;" >
2019-08-12 09:16:03 -07:00
< h2 > C++ Reference< / h2 >
2019-08-07 18:01:08 -07:00
< ul >
< li > < a href = "../cpp_algorithms/annotated.html" > Algorithms< / a > < / li >
2019-08-12 09:16:03 -07:00
< li > < a href = "../cpp_sat/annotated.html" > CP-SAT< / a > < / li >
2019-08-07 18:01:08 -07:00
< li > < a href = "../cpp_graph/annotated.html" > Graph< / a > < / li >
< li > < a href = "../cpp_routing/annotated.html" > Routing< / a > < / li >
< li > < a href = "../cpp_linear/annotated.html" > Linear solver< / a > < / li >
< / ul >
< / div >
2019-06-13 15:36:14 +02:00
< div id = "content" >
2019-08-07 18:01:08 -07:00
< div align = "center" >
< h1 style = "color: #145A32;" > C++ Reference: Routing< / h1 >
< / div >
2020-04-23 15:34:43 +02:00
<!-- Generated by Doxygen 1.8.16 -->
2019-06-13 15:36:14 +02:00
< div id = "navrow1" class = "tabs" >
< ul class = "tablist" >
< li > < a href = "namespaces.html" > < span > Namespaces< / span > < / a > < / li >
< li class = "current" > < a href = "annotated.html" > < span > Classes< / span > < / a > < / li >
2019-07-15 17:42:24 -07:00
< li > < a href = "files.html" > < span > Files< / span > < / a > < / li >
2019-06-13 15:36:14 +02:00
< / ul >
< / div >
2019-08-07 18:01:08 -07:00
< div id = "nav-path" class = "navpath" >
< ul >
< li class = "navelem" > < a class = "el" href = "namespaceoperations__research.html" > operations_research< / a > < / li > < li class = "navelem" > < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html" > BaseIntExpr< / a > < / li > < / ul >
2019-06-13 15:36:14 +02:00
< / div >
2019-08-07 18:01:08 -07:00
< / div > <!-- top -->
2019-06-13 15:36:14 +02:00
< div class = "header" >
< div class = "summary" >
< a href = "#pub-methods" > Public Member Functions< / a > |
< a href = "classoperations__research_1_1BaseIntExpr-members.html" > List of all members< / a > < / div >
< div class = "headertitle" >
2019-08-07 18:01:08 -07:00
< div class = "title" > BaseIntExpr< span class = "mlabels" > < span class = "mlabel" > abstract< / span > < / span > < / div > < / div >
2019-06-13 15:36:14 +02:00
< / div > <!-- header -->
< div class = "contents" >
2019-08-12 23:15:11 -07:00
< a name = "details" id = "details" > < / a > < h2 class = "groupheader" > Detailed Description< / h2 >
< div class = "textblock" > < p > This is the base class for all expressions that are not variables. < / p >
< p > It provides a basic '< a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a721f17985ccfb96fcc971ce2e474bbed" > CastToVar()< / a > ' implementation.< / p >
< p > The class of expressions represent two types of objects: variables and subclasses of < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html" title = "This is the base class for all expressions that are not variables." > BaseIntExpr< / a > . Variables are stateful objects that provide a rich API (remove values, WhenBound...). On the other hand, subclasses of < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html" title = "This is the base class for all expressions that are not variables." > BaseIntExpr< / a > represent range-only stateless objects. That is, min(A + B) is recomputed each time as min(A) + min(B).< / p >
< p > Furthermore, sometimes, the propagation on an expression is not complete, and < a class = "el" href = "classoperations__research_1_1IntExpr.html#ac4a4f30badcd311075302a4efcfaee0a" > Min()< / a > , < a class = "el" href = "classoperations__research_1_1IntExpr.html#a6dc4d5cdc2ed0da18452a65c5bf69e0d" > Max()< / a > are not monotonic with respect to < a class = "el" href = "classoperations__research_1_1IntExpr.html#a253ec9a9ed6b56ac4de714373ebf91f9" > SetMin()< / a > and < a class = "el" href = "classoperations__research_1_1IntExpr.html#a0034062c82083a6c0af5aae1859ef66b" > SetMax()< / a > . For instance, if A is a var with domain [0 .. 5], and B another variable with domain [0 .. 5], then Plus(A, B) has domain [0, 10].< / p >
< p > If we apply SetMax(Plus(A, B), 4)), we will deduce that both A and B have domain [0 .. 4]. In that case, Max(Plus(A, B)) is 8 and not 4. To get back monotonicity, we 'cast' the expression into a variable using the < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a36d71f28bff7448b6490fe4720ab2fe0" title = "Creates a variable from the expression." > Var()< / a > method (that will call < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a721f17985ccfb96fcc971ce2e474bbed" > CastToVar()< / a > internally). The resulting variable will be stateful and monotonic.< / p >
< p > Finally, one should never store a pointer to a < a class = "el" href = "classoperations__research_1_1IntExpr.html" title = "The class IntExpr is the base of all integer expressions in constraint programming." > IntExpr< / a > , or < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html" title = "This is the base class for all expressions that are not variables." > BaseIntExpr< / a > in the code. The safe code should always call < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a36d71f28bff7448b6490fe4720ab2fe0" title = "Creates a variable from the expression." > Var()< / a > on an expression built by the solver, and store the object as an IntVar*. This is a consequence of the stateless nature of the expressions that makes the code error-prone. < / p >
2019-08-07 18:01:08 -07:00
2019-08-12 23:15:11 -07:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solveri_8h_source.html#l00109" > 109< / a > of file < a class = "el" href = "constraint__solveri_8h_source.html" > constraint_solveri.h< / a > .< / p >
< / div > < table class = "memberdecls" >
2019-08-07 18:01:08 -07:00
< tr class = "heading" > < td colspan = "2" > < h2 class = "groupheader" > < a name = "pub-methods" > < / a >
Public Member Functions< / h2 > < / td > < / tr >
< tr class = "memitem:a1040963d944bb74b3f2cbfb4f03a89d0" > < td class = "memItemLeft" align = "right" valign = "top" >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a1040963d944bb74b3f2cbfb4f03a89d0" > BaseIntExpr< / a > (< a class = "el" href = "classoperations__research_1_1Solver.html" > Solver< / a > *const s)< / td > < / tr >
< tr class = "separator:a1040963d944bb74b3f2cbfb4f03a89d0" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:ad10ba599bb4d5563b023f6d80363e713" > < td class = "memItemLeft" align = "right" valign = "top" >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#ad10ba599bb4d5563b023f6d80363e713" > ~BaseIntExpr< / a > () override< / td > < / tr >
< tr class = "separator:ad10ba599bb4d5563b023f6d80363e713" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a36d71f28bff7448b6490fe4720ab2fe0" > < td class = "memItemLeft" align = "right" valign = "top" > < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > *  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a36d71f28bff7448b6490fe4720ab2fe0" > Var< / a > () override< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a36d71f28bff7448b6490fe4720ab2fe0" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Creates a variable from the expression. < a href = "classoperations__research_1_1BaseIntExpr.html#a36d71f28bff7448b6490fe4720ab2fe0" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a36d71f28bff7448b6490fe4720ab2fe0" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a721f17985ccfb96fcc971ce2e474bbed" > < td class = "memItemLeft" align = "right" valign = "top" > virtual < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > *  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a721f17985ccfb96fcc971ce2e474bbed" > CastToVar< / a > ()< / td > < / tr >
< tr class = "separator:a721f17985ccfb96fcc971ce2e474bbed" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:ac4a4f30badcd311075302a4efcfaee0a" > < td class = "memItemLeft" align = "right" valign = "top" > virtual int64  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#ac4a4f30badcd311075302a4efcfaee0a" > Min< / a > () const =0< / td > < / tr >
< tr class = "separator:ac4a4f30badcd311075302a4efcfaee0a" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a253ec9a9ed6b56ac4de714373ebf91f9" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a253ec9a9ed6b56ac4de714373ebf91f9" > SetMin< / a > (int64 m)=0< / td > < / tr >
< tr class = "separator:a253ec9a9ed6b56ac4de714373ebf91f9" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a6dc4d5cdc2ed0da18452a65c5bf69e0d" > < td class = "memItemLeft" align = "right" valign = "top" > virtual int64  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a6dc4d5cdc2ed0da18452a65c5bf69e0d" > Max< / a > () const =0< / td > < / tr >
< tr class = "separator:a6dc4d5cdc2ed0da18452a65c5bf69e0d" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a0034062c82083a6c0af5aae1859ef66b" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a0034062c82083a6c0af5aae1859ef66b" > SetMax< / a > (int64 m)=0< / td > < / tr >
< tr class = "separator:a0034062c82083a6c0af5aae1859ef66b" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a37ccfed48c37d5ad26af5baaf775c390" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a37ccfed48c37d5ad26af5baaf775c390" > Range< / a > (int64 *l, int64 *u)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a37ccfed48c37d5ad26af5baaf775c390" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > By default calls < a class = "el" href = "classoperations__research_1_1IntExpr.html#ac4a4f30badcd311075302a4efcfaee0a" > Min()< / a > and < a class = "el" href = "classoperations__research_1_1IntExpr.html#a6dc4d5cdc2ed0da18452a65c5bf69e0d" > Max()< / a > , but can be redefined when Min and Max code can be factorized. < a href = "classoperations__research_1_1IntExpr.html#a37ccfed48c37d5ad26af5baaf775c390" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a37ccfed48c37d5ad26af5baaf775c390" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a137deeb8781c0c7aa24bfa99c85bd01d" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a137deeb8781c0c7aa24bfa99c85bd01d" > SetRange< / a > (int64 l, int64 u)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a137deeb8781c0c7aa24bfa99c85bd01d" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > This method sets both the min and the max of the expression. < a href = "classoperations__research_1_1IntExpr.html#a137deeb8781c0c7aa24bfa99c85bd01d" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a137deeb8781c0c7aa24bfa99c85bd01d" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a1a1e45676556681a2aaff82125991f16" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a1a1e45676556681a2aaff82125991f16" > SetValue< / a > (int64 v)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a1a1e45676556681a2aaff82125991f16" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > This method sets the value of the expression. < a href = "classoperations__research_1_1IntExpr.html#a1a1e45676556681a2aaff82125991f16" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a1a1e45676556681a2aaff82125991f16" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a1d04569b37cb7fe6ed0956ab71e08bc9" > < td class = "memItemLeft" align = "right" valign = "top" > virtual bool  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a1d04569b37cb7fe6ed0956ab71e08bc9" > Bound< / a > () const< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a1d04569b37cb7fe6ed0956ab71e08bc9" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Returns true if the min and the max of the expression are equal. < a href = "classoperations__research_1_1IntExpr.html#a1d04569b37cb7fe6ed0956ab71e08bc9" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a1d04569b37cb7fe6ed0956ab71e08bc9" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a2e9b93ea445f156328eaa782adf7cb8b" > < td class = "memItemLeft" align = "right" valign = "top" > virtual bool  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a2e9b93ea445f156328eaa782adf7cb8b" > IsVar< / a > () const< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a2e9b93ea445f156328eaa782adf7cb8b" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Returns true if the expression is indeed a variable. < a href = "classoperations__research_1_1IntExpr.html#a2e9b93ea445f156328eaa782adf7cb8b" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a2e9b93ea445f156328eaa782adf7cb8b" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a2e28d548b760d7569b22bd316624af98" > < td class = "memItemLeft" align = "right" valign = "top" > < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > *  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a2e28d548b760d7569b22bd316624af98" > VarWithName< / a > (const std::string & < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a6a119daa8b83c3aaffdb6e11fac1f97e" > name< / a > )< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a2e28d548b760d7569b22bd316624af98" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Creates a variable from the expression and set the name of the resulting var. < a href = "classoperations__research_1_1IntExpr.html#a2e28d548b760d7569b22bd316624af98" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a2e28d548b760d7569b22bd316624af98" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:af13b2ea301c6800bb6d43bd70716bf6d" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#af13b2ea301c6800bb6d43bd70716bf6d" > WhenRange< / a > (< a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > *d)=0< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:af13b2ea301c6800bb6d43bd70716bf6d" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Attach a demon that will watch the min or the max of the expression. < a href = "classoperations__research_1_1IntExpr.html#af13b2ea301c6800bb6d43bd70716bf6d" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:af13b2ea301c6800bb6d43bd70716bf6d" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a0b5304838bbd2834ba9f7b38db07996f" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#a0b5304838bbd2834ba9f7b38db07996f" > WhenRange< / a > (< a class = "el" href = "classoperations__research_1_1Solver.html#ad4c4d0d62a6d65debcff4437948435a1" > Solver::Closure< / a > closure)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a0b5304838bbd2834ba9f7b38db07996f" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Attach a demon that will watch the min or the max of the expression. < a href = "classoperations__research_1_1IntExpr.html#a0b5304838bbd2834ba9f7b38db07996f" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a0b5304838bbd2834ba9f7b38db07996f" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:af460f815f9770713347d6609456c9508" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#af460f815f9770713347d6609456c9508" > WhenRange< / a > (< a class = "el" href = "classoperations__research_1_1Solver.html#ad7946514ee3dd6cb3ab993dc9e98b33b" > Solver::Action< / a > action)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:af460f815f9770713347d6609456c9508" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Attach a demon that will watch the min or the max of the expression. < a href = "classoperations__research_1_1IntExpr.html#af460f815f9770713347d6609456c9508" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:af460f815f9770713347d6609456c9508" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:afcde421cf076575a27bed81c80093ac8" > < td class = "memItemLeft" align = "right" valign = "top" > virtual void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1IntExpr.html#afcde421cf076575a27bed81c80093ac8" > Accept< / a > (< a class = "el" href = "classoperations__research_1_1ModelVisitor.html" > ModelVisitor< / a > *const visitor) const< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:afcde421cf076575a27bed81c80093ac8" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Accepts the given visitor. < a href = "classoperations__research_1_1IntExpr.html#afcde421cf076575a27bed81c80093ac8" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:afcde421cf076575a27bed81c80093ac8" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:aed804747c45a7e1caf81461f9e45dd91" > < td class = "memItemLeft" align = "right" valign = "top" > std::string  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#aed804747c45a7e1caf81461f9e45dd91" > DebugString< / a > () const override< / td > < / tr >
< tr class = "separator:aed804747c45a7e1caf81461f9e45dd91" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a5f32c22c620c811754ba7b6f977db864" > < td class = "memItemLeft" align = "right" valign = "top" > < a class = "el" href = "classoperations__research_1_1Solver.html" > Solver< / a > *  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a5f32c22c620c811754ba7b6f977db864" > solver< / a > () const< / td > < / tr >
< tr class = "separator:a5f32c22c620c811754ba7b6f977db864" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a5155ff01cf80f5a478fd09916abab155" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a5155ff01cf80f5a478fd09916abab155" > FreezeQueue< / a > ()< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a5155ff01cf80f5a478fd09916abab155" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > This method freezes the propagation queue. < a href = "classoperations__research_1_1PropagationBaseObject.html#a5155ff01cf80f5a478fd09916abab155" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a5155ff01cf80f5a478fd09916abab155" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:ae038f4a9249362629fc47e8dfc441ec7" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#ae038f4a9249362629fc47e8dfc441ec7" > UnfreezeQueue< / a > ()< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:ae038f4a9249362629fc47e8dfc441ec7" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > This method unfreezes the propagation queue. < a href = "classoperations__research_1_1PropagationBaseObject.html#ae038f4a9249362629fc47e8dfc441ec7" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:ae038f4a9249362629fc47e8dfc441ec7" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a173cbf153462b14f9b57362d2c45638a" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a173cbf153462b14f9b57362d2c45638a" > EnqueueDelayedDemon< / a > (< a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > *const d)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a173cbf153462b14f9b57362d2c45638a" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > This method pushes the demon onto the propagation queue. < a href = "classoperations__research_1_1PropagationBaseObject.html#a173cbf153462b14f9b57362d2c45638a" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a173cbf153462b14f9b57362d2c45638a" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a448b9bde901fcf3ec2e94ab972b083f0" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a448b9bde901fcf3ec2e94ab972b083f0" > EnqueueVar< / a > (< a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > *const d)< / td > < / tr >
< tr class = "separator:a448b9bde901fcf3ec2e94ab972b083f0" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a3d3bd9d99cf43cf184a1246d2c278c31" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a3d3bd9d99cf43cf184a1246d2c278c31" > ExecuteAll< / a > (const < a class = "el" href = "classoperations__research_1_1SimpleRevFIFO.html" > SimpleRevFIFO< / a > < < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > * > & demons)< / td > < / tr >
< tr class = "separator:a3d3bd9d99cf43cf184a1246d2c278c31" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a5a5ad1a2482043e4a9d2c19bbab1e250" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a5a5ad1a2482043e4a9d2c19bbab1e250" > EnqueueAll< / a > (const < a class = "el" href = "classoperations__research_1_1SimpleRevFIFO.html" > SimpleRevFIFO< / a > < < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > * > & demons)< / td > < / tr >
< tr class = "separator:a5a5ad1a2482043e4a9d2c19bbab1e250" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a3ae4667b0e7a9e6c63c91202480c8876" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a3ae4667b0e7a9e6c63c91202480c8876" > set_action_on_fail< / a > (< a class = "el" href = "classoperations__research_1_1Solver.html#ad7946514ee3dd6cb3ab993dc9e98b33b" > Solver::Action< / a > a)< / td > < / tr >
< tr class = "separator:a3ae4667b0e7a9e6c63c91202480c8876" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a26d87b428f06d54a1a44d6e950a0e196" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a26d87b428f06d54a1a44d6e950a0e196" > reset_action_on_fail< / a > ()< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a26d87b428f06d54a1a44d6e950a0e196" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > This method clears the failure callback. < a href = "classoperations__research_1_1PropagationBaseObject.html#a26d87b428f06d54a1a44d6e950a0e196" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a26d87b428f06d54a1a44d6e950a0e196" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:aa799a452245f03cc53355e6432c107a7" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#aa799a452245f03cc53355e6432c107a7" > set_variable_to_clean_on_fail< / a > (< a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > *v)< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:aa799a452245f03cc53355e6432c107a7" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Shortcut for variable cleaner. < a href = "classoperations__research_1_1PropagationBaseObject.html#aa799a452245f03cc53355e6432c107a7" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:aa799a452245f03cc53355e6432c107a7" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a6a119daa8b83c3aaffdb6e11fac1f97e" > < td class = "memItemLeft" align = "right" valign = "top" > virtual std::string  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a6a119daa8b83c3aaffdb6e11fac1f97e" > name< / a > () const< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a6a119daa8b83c3aaffdb6e11fac1f97e" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Object naming. < a href = "classoperations__research_1_1PropagationBaseObject.html#a6a119daa8b83c3aaffdb6e11fac1f97e" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a6a119daa8b83c3aaffdb6e11fac1f97e" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:ad5260b9627048b854b45d05ed34adc22" > < td class = "memItemLeft" align = "right" valign = "top" > void  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#ad5260b9627048b854b45d05ed34adc22" > set_name< / a > (const std::string & < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a6a119daa8b83c3aaffdb6e11fac1f97e" > name< / a > )< / td > < / tr >
< tr class = "separator:ad5260b9627048b854b45d05ed34adc22" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a31eda3918c04e32fa9e8c432d72b2d60" > < td class = "memItemLeft" align = "right" valign = "top" > bool  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a31eda3918c04e32fa9e8c432d72b2d60" > HasName< / a > () const< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a31eda3918c04e32fa9e8c432d72b2d60" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Returns whether the object has been named or not. < a href = "classoperations__research_1_1PropagationBaseObject.html#a31eda3918c04e32fa9e8c432d72b2d60" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a31eda3918c04e32fa9e8c432d72b2d60" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a09cbe240b742fbdcf4d3c70d19c2ed10" > < td class = "memItemLeft" align = "right" valign = "top" > virtual std::string  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#a09cbe240b742fbdcf4d3c70d19c2ed10" > BaseName< / a > () const< / td > < / tr >
2019-11-14 13:52:51 -08:00
< tr class = "memdesc:a09cbe240b742fbdcf4d3c70d19c2ed10" > < td class = "mdescLeft" >   < / td > < td class = "mdescRight" > Returns a base name for automatic naming. < a href = "classoperations__research_1_1PropagationBaseObject.html#a09cbe240b742fbdcf4d3c70d19c2ed10" > More...< / a > < br / > < / td > < / tr >
2019-08-07 18:01:08 -07:00
< tr class = "separator:a09cbe240b742fbdcf4d3c70d19c2ed10" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< / table >
2019-08-12 23:15:11 -07:00
< h2 class = "groupheader" > Constructor & Destructor Documentation< / h2 >
2019-08-07 18:01:08 -07:00
< a id = "a1040963d944bb74b3f2cbfb4f03a89d0" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a1040963d944bb74b3f2cbfb4f03a89d0" > ◆ < / a > < / span > BaseIntExpr()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html" > BaseIntExpr< / a > < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Solver.html" > Solver< / a > *const  < / td >
< td class = "paramname" > < em > s< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > explicit< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solveri_8h_source.html#l00111" > 111< / a > of file < a class = "el" href = "constraint__solveri_8h_source.html" > constraint_solveri.h< / a > .< / p >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "ad10ba599bb4d5563b023f6d80363e713" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#ad10ba599bb4d5563b023f6d80363e713" > ◆ < / a > < / span > ~BaseIntExpr()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > ~< a class = "el" href = "classoperations__research_1_1BaseIntExpr.html" > BaseIntExpr< / a > < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > override< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solveri_8h_source.html#l00112" > 112< / a > of file < a class = "el" href = "constraint__solveri_8h_source.html" > constraint_solveri.h< / a > .< / p >
< / div >
< / div >
< h2 class = "groupheader" > Member Function Documentation< / h2 >
2019-08-07 18:01:08 -07:00
< a id = "afcde421cf076575a27bed81c80093ac8" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#afcde421cf076575a27bed81c80093ac8" > ◆ < / a > < / span > Accept()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void Accept < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1ModelVisitor.html" > ModelVisitor< / a > *const  < / td >
< td class = "paramname" > < em > visitor< / em > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Accepts the given visitor. < / p >
2019-08-07 18:01:08 -07:00
< p > Reimplemented in < a class = "el" href = "classoperations__research_1_1IntVar.html#aa30c84aec5e60d6b74e1e1eb15011d4a" > IntVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a09cbe240b742fbdcf4d3c70d19c2ed10" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a09cbe240b742fbdcf4d3c70d19c2ed10" > ◆ < / a > < / span > BaseName()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual std::string BaseName < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Returns a base name for automatic naming. < / p >
2019-08-07 18:01:08 -07:00
< p > Reimplemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#adbfe3c73b9cad61f112ccb082b553c51" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a1d04569b37cb7fe6ed0956ab71e08bc9" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a1d04569b37cb7fe6ed0956ab71e08bc9" > ◆ < / a > < / span > Bound()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual bool Bound < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Returns true if the min and the max of the expression are equal. < / p >
2019-08-07 18:01:08 -07:00
< p > Reimplemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#a303c8b67c301d6d436bd06e50d41cd6b" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03814" > 3814< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a721f17985ccfb96fcc971ce2e474bbed" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a721f17985ccfb96fcc971ce2e474bbed" > ◆ < / a > < / span > CastToVar()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > * CastToVar < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > virtual< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "aed804747c45a7e1caf81461f9e45dd91" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#aed804747c45a7e1caf81461f9e45dd91" > ◆ < / a > < / span > DebugString()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > std::string DebugString < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > override< / span > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2019-08-07 18:01:08 -07:00
< p > Reimplemented from < a class = "el" href = "classoperations__research_1_1BaseObject.html#a8eba5d533fa9df4617c1868d3ec2afc4" > BaseObject< / a > .< / p >
2019-06-13 15:36:14 +02:00
2019-11-14 13:52:51 -08:00
< p > Reimplemented in < a class = "el" href = "classoperations__research_1_1Pack.html#aed804747c45a7e1caf81461f9e45dd91" > Pack< / a > , < a class = "el" href = "classoperations__research_1_1Assignment.html#aed804747c45a7e1caf81461f9e45dd91" > Assignment< / a > , < a class = "el" href = "classoperations__research_1_1SequenceVar.html#aed804747c45a7e1caf81461f9e45dd91" > SequenceVar< / a > , < a class = "el" href = "classoperations__research_1_1Constraint.html#aed804747c45a7e1caf81461f9e45dd91" > Constraint< / a > , < a class = "el" href = "classoperations__research_1_1BooleanVar.html#aed804747c45a7e1caf81461f9e45dd91" > BooleanVar< / a > , and < a class = "el" href = "classoperations__research_1_1GlobalVehicleBreaksConstraint.html#aed804747c45a7e1caf81461f9e45dd91" > GlobalVehicleBreaksConstraint< / a > .< / p >
2019-06-13 15:36:14 +02:00
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03124" > 3124< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a5a5ad1a2482043e4a9d2c19bbab1e250" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a5a5ad1a2482043e4a9d2c19bbab1e250" > ◆ < / a > < / span > EnqueueAll()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void EnqueueAll < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > const < a class = "el" href = "classoperations__research_1_1SimpleRevFIFO.html" > SimpleRevFIFO< / a > < < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > * > &   < / td >
< td class = "paramname" > < em > demons< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a173cbf153462b14f9b57362d2c45638a" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a173cbf153462b14f9b57362d2c45638a" > ◆ < / a > < / span > EnqueueDelayedDemon()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void EnqueueDelayedDemon < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > *const  < / td >
< td class = "paramname" > < em > d< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > This method pushes the demon onto the propagation queue. < / p >
< p > It will be processed directly if the queue is empty. It will be enqueued according to its priority otherwise. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03144" > 3144< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a448b9bde901fcf3ec2e94ab972b083f0" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a448b9bde901fcf3ec2e94ab972b083f0" > ◆ < / a > < / span > EnqueueVar()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void EnqueueVar < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > *const  < / td >
< td class = "paramname" > < em > d< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03145" > 3145< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a3d3bd9d99cf43cf184a1246d2c278c31" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a3d3bd9d99cf43cf184a1246d2c278c31" > ◆ < / a > < / span > ExecuteAll()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void ExecuteAll < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > const < a class = "el" href = "classoperations__research_1_1SimpleRevFIFO.html" > SimpleRevFIFO< / a > < < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > * > &   < / td >
< td class = "paramname" > < em > demons< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a5155ff01cf80f5a478fd09916abab155" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a5155ff01cf80f5a478fd09916abab155" > ◆ < / a > < / span > FreezeQueue()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void FreezeQueue < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > This method freezes the propagation queue. < / p >
< p > It is useful when you need to apply multiple modifications at once. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03135" > 3135< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a31eda3918c04e32fa9e8c432d72b2d60" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a31eda3918c04e32fa9e8c432d72b2d60" > ◆ < / a > < / span > HasName()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > bool HasName < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Returns whether the object has been named or not. < / p >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a2e9b93ea445f156328eaa782adf7cb8b" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a2e9b93ea445f156328eaa782adf7cb8b" > ◆ < / a > < / span > IsVar()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual bool IsVar < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Returns true if the expression is indeed a variable. < / p >
2019-08-07 18:01:08 -07:00
< p > Reimplemented in < a class = "el" href = "classoperations__research_1_1IntVar.html#af5d847a82550308399c315915ef8408f" > IntVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03817" > 3817< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a6dc4d5cdc2ed0da18452a65c5bf69e0d" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a6dc4d5cdc2ed0da18452a65c5bf69e0d" > ◆ < / a > < / span > Max()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual int64 Max < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > pure virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2019-08-07 18:01:08 -07:00
< p > Implemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#aef31aec3dd445e21c9c17af4e907ea54" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "ac4a4f30badcd311075302a4efcfaee0a" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#ac4a4f30badcd311075302a4efcfaee0a" > ◆ < / a > < / span > Min()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual int64 Min < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > pure virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2019-08-07 18:01:08 -07:00
< p > Implemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#a94c48877d8d1cf2b90701343c4660112" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a6a119daa8b83c3aaffdb6e11fac1f97e" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a6a119daa8b83c3aaffdb6e11fac1f97e" > ◆ < / a > < / span > name()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual std::string name < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Object naming. < / p >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a37ccfed48c37d5ad26af5baaf775c390" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a37ccfed48c37d5ad26af5baaf775c390" > ◆ < / a > < / span > Range()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void Range < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > int64 *  < / td >
< td class = "paramname" > < em > l< / em > , < / td >
< / tr >
< tr >
< td class = "paramkey" > < / td >
< td > < / td >
< td class = "paramtype" > int64 *  < / td >
< td class = "paramname" > < em > u< / em >   < / td >
< / tr >
< tr >
< td > < / td >
< td > )< / td >
< td > < / td > < td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2019-08-07 18:01:08 -07:00
< p > By default calls < a class = "el" href = "classoperations__research_1_1IntExpr.html#ac4a4f30badcd311075302a4efcfaee0a" > Min()< / a > and < a class = "el" href = "classoperations__research_1_1IntExpr.html#a6dc4d5cdc2ed0da18452a65c5bf69e0d" > Max()< / a > , but can be redefined when Min and Max code can be factorized. < / p >
2019-06-13 15:36:14 +02:00
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03800" > 3800< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a26d87b428f06d54a1a44d6e950a0e196" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a26d87b428f06d54a1a44d6e950a0e196" > ◆ < / a > < / span > reset_action_on_fail()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void reset_action_on_fail < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > This method clears the failure callback. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03158" > 3158< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a3ae4667b0e7a9e6c63c91202480c8876" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a3ae4667b0e7a9e6c63c91202480c8876" > ◆ < / a > < / span > set_action_on_fail()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void set_action_on_fail < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
2019-08-07 18:01:08 -07:00
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Solver.html#ad7946514ee3dd6cb3ab993dc9e98b33b" > Solver::Action< / a >   < / td >
2019-06-13 15:36:14 +02:00
< td class = "paramname" > < em > a< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03152" > 3152< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "ad5260b9627048b854b45d05ed34adc22" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#ad5260b9627048b854b45d05ed34adc22" > ◆ < / a > < / span > set_name()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void set_name < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > const std::string &   < / td >
< td class = "paramname" > < em > name< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "aa799a452245f03cc53355e6432c107a7" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#aa799a452245f03cc53355e6432c107a7" > ◆ < / a > < / span > set_variable_to_clean_on_fail()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void set_variable_to_clean_on_fail < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > *  < / td >
< td class = "paramname" > < em > v< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Shortcut for variable cleaner. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03161" > 3161< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a0034062c82083a6c0af5aae1859ef66b" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a0034062c82083a6c0af5aae1859ef66b" > ◆ < / a > < / span > SetMax()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void SetMax < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > int64  < / td >
< td class = "paramname" > < em > m< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > pure virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2019-08-07 18:01:08 -07:00
< p > Implemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#a317c32d3abd0b61376e319d1597ba2fa" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a253ec9a9ed6b56ac4de714373ebf91f9" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a253ec9a9ed6b56ac4de714373ebf91f9" > ◆ < / a > < / span > SetMin()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void SetMin < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > int64  < / td >
< td class = "paramname" > < em > m< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > pure virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2019-08-07 18:01:08 -07:00
< p > Implemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#ada4fcd5422c5fca5f165fc108b9613d9" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a137deeb8781c0c7aa24bfa99c85bd01d" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a137deeb8781c0c7aa24bfa99c85bd01d" > ◆ < / a > < / span > SetRange()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void SetRange < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > int64  < / td >
< td class = "paramname" > < em > l< / em > , < / td >
< / tr >
< tr >
< td class = "paramkey" > < / td >
< td > < / td >
< td class = "paramtype" > int64  < / td >
< td class = "paramname" > < em > u< / em >   < / td >
< / tr >
< tr >
< td > < / td >
< td > )< / td >
< td > < / td > < td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > This method sets both the min and the max of the expression. < / p >
2019-08-07 18:01:08 -07:00
< p > Reimplemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#a982fd365b4c61107855a3319e0991f21" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03805" > 3805< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a1a1e45676556681a2aaff82125991f16" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a1a1e45676556681a2aaff82125991f16" > ◆ < / a > < / span > SetValue()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void SetValue < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > int64  < / td >
< td class = "paramname" > < em > v< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > This method sets the value of the expression. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03811" > 3811< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a5f32c22c620c811754ba7b6f977db864" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a5f32c22c620c811754ba7b6f977db864" > ◆ < / a > < / span > solver()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > < a class = "el" href = "classoperations__research_1_1Solver.html" > Solver< / a > * solver < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > const< / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03131" > 3131< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "ae038f4a9249362629fc47e8dfc441ec7" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#ae038f4a9249362629fc47e8dfc441ec7" > ◆ < / a > < / span > UnfreezeQueue()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void UnfreezeQueue < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > This method unfreezes the propagation queue. < / p >
< p > All modifications that happened when the queue was frozen will be processed. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03139" > 3139< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a36d71f28bff7448b6490fe4720ab2fe0" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a36d71f28bff7448b6490fe4720ab2fe0" > ◆ < / a > < / span > Var()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > * Var < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramname" > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > override< / span > < span class = "mlabel" > virtual< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Creates a variable from the expression. < / p >
2019-08-07 18:01:08 -07:00
< p > Implements < a class = "el" href = "classoperations__research_1_1IntExpr.html#a07173db6ca3b22fdb35ad963831a962b" > IntExpr< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "a2e28d548b760d7569b22bd316624af98" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a2e28d548b760d7569b22bd316624af98" > ◆ < / a > < / span > VarWithName()< / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > < a class = "el" href = "classoperations__research_1_1IntVar.html" > IntVar< / a > * VarWithName < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > const std::string &   < / td >
< td class = "paramname" > < em > name< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Creates a variable from the expression and set the name of the resulting var. < / p >
2019-08-07 18:01:08 -07:00
< p > If the expression is already a variable, then it will set the name of the expression, possibly overwriting it. This is just a shortcut to < a class = "el" href = "classoperations__research_1_1BaseIntExpr.html#a36d71f28bff7448b6490fe4720ab2fe0" title = "Creates a variable from the expression." > Var()< / a > followed by < a class = "el" href = "classoperations__research_1_1PropagationBaseObject.html#ad5260b9627048b854b45d05ed34adc22" > set_name()< / a > . < / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-08-07 18:01:08 -07:00
< a id = "af13b2ea301c6800bb6d43bd70716bf6d" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#af13b2ea301c6800bb6d43bd70716bf6d" > ◆ < / a > < / span > WhenRange() < span class = "overload" > [1/3]< / span > < / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > virtual void WhenRange < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Demon.html" > Demon< / a > *  < / td >
< td class = "paramname" > < em > d< / em > < / td > < td > )< / td >
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > pure virtual< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Attach a demon that will watch the min or the max of the expression. < / p >
2019-08-07 18:01:08 -07:00
< p > Implemented in < a class = "el" href = "classoperations__research_1_1BooleanVar.html#a4aa5eab0485ae0ec6eac0a81e5d5b9bd" > BooleanVar< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-11-14 13:52:51 -08:00
< a id = "af460f815f9770713347d6609456c9508" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#af460f815f9770713347d6609456c9508" > ◆ < / a > < / span > WhenRange() < span class = "overload" > [2/3]< / span > < / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void WhenRange < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
2019-11-14 13:52:51 -08:00
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Solver.html#ad7946514ee3dd6cb3ab993dc9e98b33b" > Solver::Action< / a >   < / td >
< td class = "paramname" > < em > action< / em > < / td > < td > )< / td >
2019-06-13 15:36:14 +02:00
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Attach a demon that will watch the min or the max of the expression. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03837" > 3837< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
2019-11-14 13:52:51 -08:00
< a id = "a0b5304838bbd2834ba9f7b38db07996f" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a0b5304838bbd2834ba9f7b38db07996f" > ◆ < / a > < / span > WhenRange() < span class = "overload" > [3/3]< / span > < / h2 >
2019-06-13 15:36:14 +02:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "mlabels" >
< tr >
< td class = "mlabels-left" >
< table class = "memname" >
< tr >
2019-08-07 18:01:08 -07:00
< td class = "memname" > void WhenRange < / td >
2019-06-13 15:36:14 +02:00
< td > (< / td >
2019-11-14 13:52:51 -08:00
< td class = "paramtype" > < a class = "el" href = "classoperations__research_1_1Solver.html#ad4c4d0d62a6d65debcff4437948435a1" > Solver::Closure< / a >   < / td >
< td class = "paramname" > < em > closure< / em > < / td > < td > )< / td >
2019-06-13 15:36:14 +02:00
< td > < / td >
< / tr >
< / table >
< / td >
< td class = "mlabels-right" >
< span class = "mlabels" > < span class = "mlabel" > inline< / span > < span class = "mlabel" > inherited< / span > < / span > < / td >
< / tr >
< / table >
< / div > < div class = "memdoc" >
< p > Attach a demon that will watch the min or the max of the expression. < / p >
2020-01-27 13:48:26 +01:00
< p class = "definition" > Definition at line < a class = "el" href = "constraint__solver_8h_source.html#l03831" > 3831< / a > of file < a class = "el" href = "constraint__solver_8h_source.html" > constraint_solver.h< / a > .< / p >
2019-06-13 15:36:14 +02:00
< / div >
< / div >
< hr / > The documentation for this class was generated from the following file:< ul >
< li > < a class = "el" href = "constraint__solveri_8h_source.html" > constraint_solveri.h< / a > < / li >
< / ul >
< / div > <!-- contents -->
2019-08-07 18:01:08 -07:00
< / div >
2019-06-13 15:36:14 +02:00
< / div >
< div id = "footer-container" >
< div id = "footer" >
< / div >
< / div >
< / body >
< / html >