Skip to content

Commit

Permalink
Added solver TLQ (QP Zielonka with tangle learning)
Browse files Browse the repository at this point in the history
  • Loading branch information
trolando committed Jan 5, 2025
1 parent 2c8b951 commit c7788e8
Show file tree
Hide file tree
Showing 7 changed files with 992 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ target_sources(oink
src/solvers/zlkpp.cpp
src/solvers/ptl.cpp
src/solvers/dtl.cpp
src/solvers/tlq.cpp
${OINK_HDRS}
)

Expand Down
2 changes: 2 additions & 0 deletions src/solvers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include "solvers/ppq.hpp"
#include "solvers/ptl.hpp"
#include "solvers/dtl.hpp"
#include "solvers/tlq.hpp"

namespace pg {

Expand Down Expand Up @@ -76,6 +77,7 @@ Solvers::Solvers()
_add("rtl", "recursive tangle learning", 0, [] (Oink& oink, Game& game) { return std::make_unique<RTLSolver>(oink, game); });
_add("ortl", "one-sided recursive tangle learning", 0, [] (Oink& oink, Game& game) { return std::make_unique<ORTLSolver>(oink, game); });
_add("tl", "tangle learning", 0, [] (Oink& oink, Game& game) { return std::make_unique<TLSolver>(oink, game); });
_add("tlq", "qpt recursive with tangle learning", 0, [] (Oink& oink, Game& game) { return std::make_unique<TLQSolver>(oink, game); });
}

void
Expand Down
Loading

0 comments on commit c7788e8

Please sign in to comment.