use of catdata.fqlpp.cat.Transform in project fql by CategoricalData.
the class CatOps method visit.
@Override
public Transform visit(FQLPPProgram env, ToCat e) {
Functor s = e.src.accept(env, this);
Functor t = e.dst.accept(env, this);
FUNCTION o = x -> {
Node n = (Node) x;
// Set src = (Set) s.applyO(n);
// Set dst = (Set) t.applyO(n);
Functor fun = e.fun.get(n.name).accept(env, this);
// new Fn(src, dst, fun);
return fun;
};
return new Transform(s, t, o);
}
use of catdata.fqlpp.cat.Transform in project fql by CategoricalData.
the class CatOps method visit.
@Override
public Transform visit(FQLPPProgram env, ApplyTrans e) {
Transform F = e.F.accept(env, this);
Functor I = e.I.accept(env, this);
return (Transform) F.apply(I);
}
use of catdata.fqlpp.cat.Transform in project fql by CategoricalData.
the class CatOps method visit.
@Override
public Functor visit(FQLPPProgram env, Pushout e) {
Transform l = ENV.trans.get(e.l);
if (l == null) {
throw new RuntimeException("Missing transform: " + e.l);
}
Transform r = ENV.trans.get(e.r);
if (r == null) {
throw new RuntimeException("Missing transform: " + e.r);
}
if (!l.source.equals(r.source)) {
throw new RuntimeException("Source functors do not match.");
}
Category<Object, Object> D = l.source.source;
Set<String> objects = new HashSet<>();
objects.add("A");
objects.add("B");
objects.add("C");
Set<String> arrows = new HashSet<>();
arrows.add("f");
arrows.add("g");
arrows.add("a");
arrows.add("b");
arrows.add("c");
Map<String, String> sources = new HashMap<>();
sources.put("f", "A");
sources.put("g", "A");
sources.put("a", "A");
sources.put("b", "B");
sources.put("c", "C");
Map<String, String> targets = new HashMap<>();
targets.put("f", "B");
targets.put("g", "C");
targets.put("a", "A");
targets.put("b", "B");
targets.put("c", "C");
Map<Pair<String, String>, String> composition = new HashMap<>();
composition.put(new Pair<>("a", "a"), "a");
composition.put(new Pair<>("b", "b"), "b");
composition.put(new Pair<>("c", "c"), "c");
composition.put(new Pair<>("a", "f"), "f");
composition.put(new Pair<>("a", "g"), "g");
composition.put(new Pair<>("f", "b"), "f");
composition.put(new Pair<>("g", "c"), "g");
Map<String, String> identities = new HashMap<>();
identities.put("A", "a");
identities.put("B", "b");
identities.put("C", "c");
Category<String, String> span = new FiniteCategory<>(objects, arrows, sources, targets, composition, identities);
Category<Pair<Object, String>, Pair<Object, String>> Dspan = FinCat.product(D, span);
Functor<Pair<Object, String>, Pair<Object, String>, Object, Object> fst = FinCat.first(D, span);
FUNCTION<Pair<Object, String>, Set> o = p -> {
switch(p.second) {
case "A":
return (Set) l.source.applyO(p.first);
case "B":
return (Set) l.target.applyO(p.first);
case "C":
return (Set) r.target.applyO(p.first);
default:
throw new RuntimeException();
}
};
FUNCTION<Pair<Object, String>, Fn> x = fp -> {
Object f = fp.first;
String p = fp.second;
Object a = D.source(f);
// Object b = D.target(f);
// String i = span.source(p);
String j = span.target(p);
// Functor I = i == "A" ? l.source : i == "B" ? l.target : r.target;
Functor J = Objects.equals(j, "A") ? l.source : Objects.equals(j, "B") ? l.target : r.target;
// Fn If = (Fn) I.applyA(f);
Fn Jf = (Fn) J.applyA(f);
Transform P = Objects.equals(p, "f") ? l : Objects.equals(p, "g") ? r : Objects.equals(p, "a") ? Transform.id(l.source) : Objects.equals(p, "b") ? Transform.id(l.target) : Transform.id(r.target);
// Fn Pb = (Fn) P.apply(b);
Fn Pa = (Fn) P.apply(a);
return Fn.compose(Pa, Jf);
};
Functor I = new Functor(Dspan, FinSet.FinSet0(), o, x);
return FDM.sigmaF(fst).applyO(I);
}
use of catdata.fqlpp.cat.Transform in project fql by CategoricalData.
the class CatOps method visit.
@Override
public Category visit(FQLPPProgram env, Kleisli e) {
FunctorExp f0 = env.ftrs.get(e.F);
if (f0 == null) {
throw new RuntimeException("Missing functor: " + e.F);
}
TransExp ret0 = env.trans.get(e.unit);
if (ret0 == null) {
throw new RuntimeException("Missing transform: " + e.unit);
}
TransExp join0 = env.trans.get(e.join);
if (join0 == null) {
throw new RuntimeException("Missing transform: " + e.join);
}
Functor F = f0.accept(env, this);
Transform ret = ret0.accept(env, this);
Transform join = join0.accept(env, this);
if (e.isCo) {
CoMonad m = new CoMonad(F, ret, join);
return m.cokleisli();
} else {
Monad m = new Monad(F, ret, join);
return m.kleisli();
}
}
use of catdata.fqlpp.cat.Transform in project fql by CategoricalData.
the class FQLPPDriver method makeEnv.
public static FQLPPEnvironment makeEnv(String str, FQLPPProgram init, String... toUpdate) {
Map<String, Fn<?, ?>> fns = new HashMap<>();
Map<String, Set<?>> sets = new HashMap<>();
Map<String, Category<?, ?>> cats = new HashMap<>();
Map<String, Functor<?, ?, ?, ?>> ftrs = new HashMap<>();
Map<String, Transform<?, ?, ?, ?>> trans = new HashMap<>();
FQLPPEnvironment ret = new FQLPPEnvironment(init, str, sets, fns, cats, ftrs, trans);
for (Entry<String, CatExp> k : init.cats.entrySet()) {
init.cats.put(k.getKey(), k.getValue().accept(init, new PreProcessor()));
}
for (String k : init.order) {
SetExp se = init.sets.get(k);
if (se != null) {
try {
Set<?> xxx = se.accept(init, new SetOps(ret));
sets.put(k, xxx);
} catch (Throwable t) {
t.printStackTrace();
throw new LineException(t.getLocalizedMessage(), k, "set");
}
toUpdate[0] = "Last Processed: " + k;
}
FnExp fe = init.fns.get(k);
if (fe != null) {
try {
Fn<?, ?> xxx = fe.accept(init, new SetOps(ret));
fns.put(k, xxx);
toUpdate[0] = "Last Processed: " + k;
} catch (Throwable t) {
t.printStackTrace();
throw new LineException(t.getLocalizedMessage(), k, "function");
}
}
CatExp ce = init.cats.get(k);
// CatExp ce = ce0.accept(init, new PreProcessor());
if (ce != null) {
try {
Category<?, ?> xxx = ce.accept(init, new CatOps(ret));
cats.put(k, xxx);
toUpdate[0] = "Last Processed: " + k;
} catch (Throwable t) {
t.printStackTrace();
throw new LineException(t.getLocalizedMessage(), k, "category");
}
}
FunctorExp FE = init.ftrs.get(k);
if (FE != null) {
try {
Functor<?, ?, ?, ?> xxx = FE.accept(init, new CatOps(ret));
ftrs.put(k, xxx);
toUpdate[0] = "Last Processed: " + k;
} catch (Throwable t) {
t.printStackTrace();
throw new LineException(t.getLocalizedMessage(), k, "functor");
}
}
TransExp te = init.trans.get(k);
if (te != null) {
try {
Transform<?, ?, ?, ?> xxx = te.accept(init, new CatOps(ret));
trans.put(k, xxx);
toUpdate[0] = "Last Processed: " + k;
} catch (Throwable t) {
t.printStackTrace();
throw new LineException(t.getLocalizedMessage(), k, "transform");
}
}
}
return ret;
}
Aggregations