Skip to content

Commit

Permalink
Include gaol/gaol instead of goal/gaol.h which may cause namespace is…
Browse files Browse the repository at this point in the history
…sues
  • Loading branch information
lebarsfa committed Mar 7, 2024
1 parent 0ad1a6d commit 52f69af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion interval_lib_wrapper/gaol/ibex_IntervalLibWrapper.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _IBEX_INTERVALLIBWRAPPER_H_
#define _IBEX_INTERVALLIBWRAPPER_H_

#include "gaol/gaol.h"
#include "gaol/gaol"
#include "gaol/gaol_interval.h"

#define IBEX_INTERVAL_LIB_NEG_INFINITY (-GAOL_INFINITY)
Expand Down
6 changes: 3 additions & 3 deletions interval_lib_wrapper/gaol/ibex_IntervalLibWrapper.inl
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
namespace ibex {

inline void fpu_round_down() {
round_downward();
gaol::round_downward();
}

inline void fpu_round_up() {
round_upward();
gaol::round_upward();
}

inline void fpu_round_near() {
round_nearest();
gaol::round_nearest();
}

inline double previous_float(double x) {
Expand Down

0 comments on commit 52f69af

Please sign in to comment.