1 //
2 //  Bound.h
3 //  PowerTools++
4 //
5 //  Created by Hassan on 4/02/2015.
6 //  Copyright (c) 2015 NICTA. All rights reserved.
7 //
8 
9 #ifndef Bound_h
10 #define Bound_h
11 
12 #include <stdio.h>
13 #include <math.h>
14 
15 class Bound {
16 
17 public:
18     /** Lower bound */
19     double min;
20     /** Upper bound */
21     double max;
22 
23     Bound();
24 
25 
26 };
27 #endif /* defined(__PowerTools____Bound__) */
28