From 3b8497a4d6c71ac542a2992a645c00bf99d45390 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sun, 1 Feb 2015 17:17:35 +0100 Subject: Implement movement rendering --- problem.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'problem.hpp') diff --git a/problem.hpp b/problem.hpp index 381b52d..685e1df 100644 --- a/problem.hpp +++ b/problem.hpp @@ -86,14 +86,14 @@ struct solver_internal { // intermediate data for the solver // represents a graph of randomly chosen positions and simple solutions between them std::vector pts; - std::map > paths; + std::map > paths; }; class solver { // mutex-protected asynchronous structure private: - //todo + solver_internal _d; public: solver(); @@ -101,6 +101,8 @@ class solver { void start(const problem &p); bool finished(); solution get_solution(); + + solver_internal peek_internal(); }; -- cgit v1.2.3