summaryrefslogtreecommitdiff
path: root/fuzzylite/src/fuzzylite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzylite/src/fuzzylite.cpp')
-rw-r--r--fuzzylite/src/fuzzylite.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/fuzzylite/src/fuzzylite.cpp b/fuzzylite/src/fuzzylite.cpp
new file mode 100644
index 0000000..db17fec
--- /dev/null
+++ b/fuzzylite/src/fuzzylite.cpp
@@ -0,0 +1,53 @@
+/*
+ fuzzylite (R), a fuzzy logic control library in C++.
+ Copyright (C) 2010-2017 FuzzyLite Limited. All rights reserved.
+ Author: Juan Rada-Vilela, Ph.D. <jcrada@fuzzylite.com>
+
+ This file is part of fuzzylite.
+
+ fuzzylite is free software: you can redistribute it and/or modify it under
+ the terms of the FuzzyLite License included with the software.
+
+ You should have received a copy of the FuzzyLite License along with
+ fuzzylite. If not, see <http://www.fuzzylite.com/license/>.
+
+ fuzzylite is a registered trademark of FuzzyLite Limited.
+ */
+
+#include "fl/fuzzylite.h"
+
+namespace fl {
+
+
+ int fuzzylite::_decimals = 3;
+ std::ios_base::fmtflags fuzzylite::_scalarFormat = std::ios_base::fixed;
+ scalar fuzzylite::_macheps = 1e-6;
+ bool fuzzylite::_debugging = false;
+ bool fuzzylite::_logging = true;
+
+ std::string platform() {
+#ifdef FL_UNIX
+ return "Unix";
+#elif defined FL_WINDOWS
+ return "Windows";
+#else
+ return "?";
+#endif
+ }
+
+ std::string floatingPoint() {
+ scalar someScalar = 0;
+ FL_IUNUSED(someScalar);
+ std::string type;
+
+ std::ostringstream ss;
+#ifdef FL_USE_FLOAT
+ type = "float";
+#else
+ type = "double";
+#endif
+ ss << "fl::scalar is defined as \'" << type << "\' using " <<
+ sizeof (someScalar) << " bytes";
+ return ss.str();
+ }
+}