MCPcopy Create free account
hub / github.com/dds-bridge/dds / SolveBoard

Function SolveBoard

library/src/solver_if.cpp:70–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68
69
70int STDCALL SolveBoard(
71 Deal dl,
72 int target,
73 int solutions,
74 int mode,
75 FutureTricks * futp,
76 int thrId)
77{
78 if (! sysdep.thread_ok(thrId))
79 return RETURN_THREAD_INDEX;
80
81 // Create an owned context for this call and delegate to the C++ overload.
82 SolverContext outer_ctx;
83 return solve_board(outer_ctx, dl, target, solutions, mode, futp);
84}
85
86auto solve_board_internal(
87 SolverContext& ctx,

Callers 8

solve_single_commonFunction · 0.70
SolveBoardPBNFunction · 0.70
mainFunction · 0.50
TESTFunction · 0.50
TEST_FFunction · 0.50
register_solve_bindingsFunction · 0.50
solve_legacyFunction · 0.50
mainFunction · 0.50

Calls 2

solve_boardFunction · 0.85
thread_okMethod · 0.80

Tested by 3

mainFunction · 0.40
TESTFunction · 0.40
TEST_FFunction · 0.40