diff options
author | pommicket <pommicket@gmail.com> | 2025-08-21 18:36:29 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-08-21 18:36:29 -0400 |
commit | a71b0ecc36665c8d28d19e0c0e06f70713b816ab (patch) | |
tree | d014c028ac6425867184918fc35606898bd8d016 /quacker/macondobackend.h | |
parent | f7bba783ccf693ccb92c870562931ef3377852f0 (diff) |
Editable Macondo executable path
Diffstat (limited to 'quacker/macondobackend.h')
-rw-r--r-- | quacker/macondobackend.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quacker/macondobackend.h b/quacker/macondobackend.h index dfc4fc9..bda9048 100644 --- a/quacker/macondobackend.h +++ b/quacker/macondobackend.h @@ -33,6 +33,9 @@ public: void solveEndgame(const MacondoEndgameOptions &options); void solvePreEndgame(const MacondoPreEndgameOptions &options); std::string getSimResults(); + inline void setExecPath(const std::string &path) { + m_execPath = path; + } inline bool isRunning() const { return m_command != Command::None; } // stop current Macondo analysis void stop(); |