summaryrefslogtreecommitdiffstats
path: root/src/removeoverlap/constraint.cpp
diff options
context:
space:
mode:
authorTim Dwyer <tgdwyer@gmail.com>2006-02-06 05:22:54 +0000
committertgdwyer <tgdwyer@users.sourceforge.net>2006-02-06 05:22:54 +0000
commit26764b3878c6aec5f315f9f63c8721640218b826 (patch)
tree95545994301bc2fb624076245706d4aea8f8bca8 /src/removeoverlap/constraint.cpp
parentadd scaling and translation so that the DXFs open properly in robomaster (diff)
downloadinkscape-26764b3878c6aec5f315f9f63c8721640218b826.tar.gz
inkscape-26764b3878c6aec5f315f9f63c8721640218b826.zip
DBL_MIN replaced by -DBL_MAX which is what I meant all along.
Fixes bug. (bzr r89)
Diffstat (limited to 'src/removeoverlap/constraint.cpp')
-rw-r--r--src/removeoverlap/constraint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/removeoverlap/constraint.cpp b/src/removeoverlap/constraint.cpp
index e48775f8c..bb889c4d9 100644
--- a/src/removeoverlap/constraint.cpp
+++ b/src/removeoverlap/constraint.cpp
@@ -24,6 +24,6 @@ Constraint::Constraint(Variable *left, Variable *right, double gap)
}
std::ostream& operator <<(std::ostream &os, const Constraint &c)
{
- os<<*c.left<<"+"<<c.gap<<"<="<<*c.right<<"("<<c.slack()<<")";
+ os<<*c.left<<"+"<<c.gap<<"<="<<*c.right<<"("<<c.slack()<<"):lts="<<c.left->block->timeStamp<<",cts="<<c.timeStamp;
return os;
}