Search in sources :

Example 1 with PSMStep

use of catdata.fql.sql.PSMStep in project fql by CategoricalData.

the class InstOps method visit.

@Override
public Pair<List<PSM>, Object> visit(String env, Step e) {
    List<PSM> ret = new LinkedList<>();
    ret.add(new PSMStep(env, e.I, e.m.toMap(prog), e.n.toMap(prog)));
    return new Pair<>(ret, new Object());
}
Also used : PropPSM(catdata.fql.sql.PropPSM) ExpPSM(catdata.fql.sql.ExpPSM) PSM(catdata.fql.sql.PSM) LinkedList(java.util.LinkedList) PSMStep(catdata.fql.sql.PSMStep) Pair(catdata.Pair)

Aggregations

Pair (catdata.Pair)1 ExpPSM (catdata.fql.sql.ExpPSM)1 PSM (catdata.fql.sql.PSM)1 PSMStep (catdata.fql.sql.PSMStep)1 PropPSM (catdata.fql.sql.PropPSM)1 LinkedList (java.util.LinkedList)1