Initial version, pending windows

This commit is contained in:
2024-02-24 03:07:52 -06:00
parent 359c31a0af
commit 9b245b10e3
21 changed files with 4746 additions and 9 deletions

View File

@@ -145,7 +145,7 @@ public:
/* Dump a representation of the solver internals to stdout.
*/
void dump()
void dump() const
{
debug::dump( m_impl );
}
@@ -153,7 +153,7 @@ public:
/* Dump a representation of the solver internals to a stream.
*/
void dump( std::ostream& out )
void dump( std::ostream& out ) const
{
debug::dump( m_impl, out );
}
@@ -161,7 +161,7 @@ public:
/* Dump a representation of the solver internals to a string.
*/
std::string dumps()
std::string dumps() const
{
return debug::dumps( m_impl );
}

View File

@@ -64,7 +64,7 @@ public:
void setValue(double value) { m_data->setValue(value); }
// operator== is used for symbolics
bool equals(const Variable &other)
bool equals(const Variable &other) const
{
return m_data == other.m_data;
}