summaryrefslogtreecommitdiff
path: root/lib/include/problem.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/problem.hpp')
-rw-r--r--lib/include/problem.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/include/problem.hpp b/lib/include/problem.hpp
index c2c9e09..740751d 100644
--- a/lib/include/problem.hpp
+++ b/lib/include/problem.hpp
@@ -28,11 +28,13 @@ class problem {
cholmod_common* c;
public:
+ current_info sol;
+
problem(const graph&, unsigned, cholmod_common*);
problem(const graph&, unsigned, cholmod_sparse*, cholmod_common*);
problem(const problem&);
~problem();
- current_info solve(std::vector<bool>& fuses);
+ void solve(std::vector<bool>& fuses);
void break_edge(unsigned, bool unbreak = false);
};