mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-02 07:42:50 -06:00
12 lines
223 B
C
12 lines
223 B
C
#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);
|
|
}
|
|
|