mirror of https://github.com/CGAL/cgal
use precondition macro
This commit is contained in:
parent
6b07cbdadd
commit
7a6faa7c38
|
|
@ -76,7 +76,7 @@ namespace CGAL
|
||||||
* \cgalParamNBegin{max_iteration_number}
|
* \cgalParamNBegin{max_iteration_number}
|
||||||
* \cgalParamDescription{limit on the number of performed iterations. 0 means that there is
|
* \cgalParamDescription{limit on the number of performed iterations. 0 means that there is
|
||||||
* no limit on the number of performed iterations.}
|
* no limit on the number of performed iterations.}
|
||||||
* \cgalParamExtra{\pre `max_iteration_number >=0`}
|
* \cgalParamPrecondition{`max_iteration_number >=0`}
|
||||||
* \cgalParamType{`int`}
|
* \cgalParamType{`int`}
|
||||||
* \cgalParamDefault{0}
|
* \cgalParamDefault{0}
|
||||||
* \cgalParamNEnd
|
* \cgalParamNEnd
|
||||||
|
|
@ -85,7 +85,7 @@ namespace CGAL
|
||||||
* \cgalParamDescription{to set up, in seconds, a CPU time limit after which the optimization process is stopped.
|
* \cgalParamDescription{to set up, in seconds, a CPU time limit after which the optimization process is stopped.
|
||||||
* This time is measured using `CGAL::Real_timer`. 0 means that there is no time limit.}
|
* This time is measured using `CGAL::Real_timer`. 0 means that there is no time limit.}
|
||||||
* \cgalParamType{`double`}
|
* \cgalParamType{`double`}
|
||||||
* \cgalParamExtra{\pre `time_limit` \f$ \geq\f$ 0}
|
* \cgalParamPrecondition{`time_limit` \f$ \geq\f$ 0}
|
||||||
* \cgalParamDefault{0}
|
* \cgalParamDefault{0}
|
||||||
* \cgalParamNEnd
|
* \cgalParamNEnd
|
||||||
*
|
*
|
||||||
|
|
@ -95,7 +95,7 @@ namespace CGAL
|
||||||
* of its shortest incident edge, is frozen (i.e.\ is not relocated).
|
* of its shortest incident edge, is frozen (i.e.\ is not relocated).
|
||||||
* The parameter `freeze_bound` gives the threshold ratio.
|
* The parameter `freeze_bound` gives the threshold ratio.
|
||||||
* If it is set to 0, freezing of vertices is disabled.}
|
* If it is set to 0, freezing of vertices is disabled.}
|
||||||
* \cgalParamExtra{\pre `0<= freeze_bound <=1}
|
* \cgalParamPrecondition{`0<= freeze_bound <=1`}
|
||||||
* \cgalParamType{`double`}
|
* \cgalParamType{`double`}
|
||||||
* \cgalParamDefault{0.001}
|
* \cgalParamDefault{0.001}
|
||||||
* \cgalParamNEnd
|
* \cgalParamNEnd
|
||||||
|
|
@ -104,7 +104,7 @@ namespace CGAL
|
||||||
* \cgalParamDescription{threshold ratio of stopping criterion based on convergence: the optimization process is stopped
|
* \cgalParamDescription{threshold ratio of stopping criterion based on convergence: the optimization process is stopped
|
||||||
* when at the last iteration the displacement of any vertex is less than
|
* when at the last iteration the displacement of any vertex is less than
|
||||||
* a given fraction of the length of the shortest edge incident to that vertex.}
|
* a given fraction of the length of the shortest edge incident to that vertex.}
|
||||||
* \cgalParamExtra{\pre `0 <=convergence <= 1`}
|
* \cgalParamPrecondition{`0 <=convergence <= 1`}
|
||||||
* \cgalParamType{`double`}
|
* \cgalParamType{`double`}
|
||||||
* \cgalParamDefault{0.001}
|
* \cgalParamDefault{0.001}
|
||||||
* \cgalParamNEnd
|
* \cgalParamNEnd
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue