[Interval] Patch the need recomputing

This commit is contained in:
Joachim LF
2020-05-01 14:20:25 +02:00
committed by EmilieNumworks
parent a52202fa90
commit f250311856
3 changed files with 7 additions and 0 deletions

View File

@@ -53,6 +53,10 @@ void Interval::setElement(int i, double f) {
}
}
void Interval::setNeedRecompute(bool needrecompute) {
m_needCompute = needrecompute;
}
void Interval::reset() {
m_start = 0.0;
m_end = 10.0;