It would be useful to have the phase and unphase functions exposed in the C interface:
void ccadical_phase (CCaDiCaL *wrapper, int lit) {
((Wrapper *) wrapper)->solver->phase (lit);
}
void ccadical_unphase (CCaDiCaL *wrapper, int lit) {
((Wrapper *) wrapper)->solver->unphase (lit);
}
It would be useful to have the
phaseandunphasefunctions exposed in the C interface: