aboutsummaryrefslogtreecommitdiff
path: root/tree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tree.cpp')
-rw-r--r--tree.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tree.cpp b/tree.cpp
index 340685f..0ef3a39 100644
--- a/tree.cpp
+++ b/tree.cpp
@@ -1,4 +1,5 @@
#include "tree.h"
+#include <limits>
Node::Node()
{
@@ -103,6 +104,9 @@ Node* Tree::addOperator(Node **place, char oper)
string Tree::print(string term)
{
std::stringstream out;
+
+ typedef std::numeric_limits<double> dbl;
+ out.precision(dbl::digits10);
out << "digraph \"" << term << "\"" << endl << "{" << endl << "node [shape = box];" << endl;