blob: 5767feac01ab9ab732bc3cdc9aff9f27e5cfc4fe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "data.h"
#include "evaluator.h"
#include "hopu.h"
void pgf_pattern_unify(PgfEvalState* state, PgfClosure* c1, PgfClosure* c2)
{
c1 = state->eval_gates->enter(state, c1);
c2 = state->eval_gates->enter(state, c2);
}
|