Skip to content
Snippets Groups Projects
Commit 2a1e9871 authored by Markus Pfeiffer's avatar Markus Pfeiffer
Browse files

Add comment about Family export

parent 7b6943d1
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,9 @@
# GAPTypesToJson("gap_types.json");
# Operations
# Families (not necessary)
# Families (not necessary, there is an unbounded number of
# them and they do not convey any useful mathematical
# information)
# Types of Installed Methods ( with filters )
LoadPackage("json");
......@@ -126,6 +128,12 @@ GAPTypesInfo := function()
lres.name := NAME_FUNC(OPERATIONS[2*i - 1]);
lres.filters := FiltersForOperation(OPERATIONS[2*i - 1]);
lres.filters := List(lres.filters, x->List(x,y -> List(y,NAME_FUNC)));
for a in [1..6] do
meths := METHODS_OPERATION(OPERATIONS[2*i - 1], a);
od;
Add(res, lres);
od;
return res;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment