blob: 39aae6db4c2ea5727be0bb9bce064c12fe0bd021 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "data.h"
#include "reasoner.h"
#include "hopu.h"
PGF_INTERNAL void
pgf_pattern_unify(PgfReasoner* rs, PgfClosure* c1, PgfClosure* c2)
{
c1 = rs->eval_gates->enter(rs, c1);
c2 = rs->eval_gates->enter(rs, c2);
}
|