summaryrefslogtreecommitdiff
path: root/thirdparty/windows/include/coin/CoinRational.hpp
diff options
context:
space:
mode:
authorharpreet2016-07-01 00:11:55 +0530
committerharpreet2016-07-01 00:11:55 +0530
commit89b96cb79cbe75ba8c1afea61b3caca37a083f62 (patch)
tree1b879fb0dce2406c1c49bf5bdabcedfb12ff020c /thirdparty/windows/include/coin/CoinRational.hpp
parent10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3 (diff)
downloadFOSSEE-Optimization-toolbox-89b96cb79cbe75ba8c1afea61b3caca37a083f62.tar.gz
FOSSEE-Optimization-toolbox-89b96cb79cbe75ba8c1afea61b3caca37a083f62.tar.bz2
FOSSEE-Optimization-toolbox-89b96cb79cbe75ba8c1afea61b3caca37a083f62.zip
Windows Included
Diffstat (limited to 'thirdparty/windows/include/coin/CoinRational.hpp')
-rw-r--r--thirdparty/windows/include/coin/CoinRational.hpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/thirdparty/windows/include/coin/CoinRational.hpp b/thirdparty/windows/include/coin/CoinRational.hpp
new file mode 100644
index 0000000..bfbfa5f
--- /dev/null
+++ b/thirdparty/windows/include/coin/CoinRational.hpp
@@ -0,0 +1,44 @@
+// Authors: Matthew Saltzman and Ted Ralphs
+// Copyright 2015, Matthew Saltzman and Ted Ralphs
+// Licensed under the Eclipse Public License 1.0
+
+#ifndef CoinRational_H
+#define CoinRational_H
+
+#include <cmath>
+
+//Small class for rational numbers
+class CoinRational
+{
+
+public :
+ long getDenominator() { return denominator_; }
+ long getNumerator() { return numerator_; }
+
+ CoinRational():
+ numerator_(0),
+ denominator_(1)
+ {};
+
+ CoinRational(long n, long d):
+ numerator_(n),
+ denominator_(d)
+ {};
+
+ CoinRational(double val, double maxdelta, long maxdnom)
+ {
+ if (!nearestRational_(val, maxdelta, maxdnom)){
+ numerator_ = 0;
+ denominator_ = 1;
+ }
+ };
+
+private :
+
+ long numerator_;
+ long denominator_;
+
+ bool nearestRational_(double val, double maxdelta, long maxdnom);
+};
+
+#endif