constraint.cpp revision 6af8609f35d86944763dc80141002c548984b2ed
/**
* \brief A constraint determines a minimum or exact spacing required between
* two variables.
*
* Authors:
* Tim Dwyer <tgdwyer@gmail.com>
*
* Copyright (C) 2005 Authors
*
* Released under GNU LGPL. Read the file 'COPYING' for more information.
*/
#include "constraint.h"
#include <cassert>
timeStamp(0),
active(false),
visited(false),
{
}
Constraint::~Constraint() {
Constraints::iterator i;
if(*i==this) break;
}
if(*i==this) break;
}
}
{
if(&c==NULL) {
os<<"NULL";
} else {
}
return os;
}