Skip to content

Commit

Permalink
[core] removed unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
AugusteBourgois committed Dec 11, 2020
1 parent c18cdad commit 8f8c22a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/contractors/dyn/tubex_CtcLohner.cpp
Expand Up @@ -80,7 +80,7 @@ const ibex::IntervalVector &LohnerAlgorithm::getGlobalEnclosure() const {
return u_tilde;
}

CtcLohner::CtcLohner(const ibex::Function &f, int contractions, double eps, bool debug)
CtcLohner::CtcLohner(const ibex::Function &f, int contractions, double eps)
: DynCtc(),
_x_(ExprSymbol::new_(Dim::col_vec(f.nb_var()))),
m_f(f),
Expand Down
2 changes: 1 addition & 1 deletion src/core/contractors/dyn/tubex_CtcLohner.h
Expand Up @@ -38,7 +38,7 @@ class LohnerAlgorithm {

class CtcLohner : public tubex::DynCtc {
public:
explicit CtcLohner(const ibex::Function &f, int contractions = 5, double eps = 0.1, bool debug = false);
explicit CtcLohner(const ibex::Function &f, int contractions = 5, double eps = 0.1);

void contract(tubex::TubeVector &tube, TimePropag t_propa = TimePropag::FORWARD | TimePropag::BACKWARD);

Expand Down

0 comments on commit 8f8c22a

Please sign in to comment.