summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/hopu.c
blob: d948046258d4361fddb129526f3a1b2d5dcc2dc6 (plain)
1
2
3
4
5
6
7
8
9
10
#include "data.h"
#include "reasoner.h"
#include "hopu.h"

void pgf_pattern_unify(PgfReasoner* rs, PgfClosure* c1, PgfClosure* c2)
{
	c1 = rs->eval_gates->enter(rs, c1);
	c2 = rs->eval_gates->enter(rs, c2);
}