Skip to content

Instantly share code, notes, and snippets.

@5HT
Created May 5, 2015 18:13
Show Gist options
  • Save 5HT/c676b6f27b202f29179e to your computer and use it in GitHub Desktop.
Save 5HT/c676b6f27b202f29179e to your computer and use it in GitHub Desktop.
roster() ->
[{all,[d,b,l,x]},
{none,[]},
{d,[nova,noap,sort,deco]},
{b,[tur1,tur2,rmcp,baf1,sude,baf2,trac,maco,soco]},
{l,[cono,drun,eqno,free]},
{x,[sums,arsu]},
{nova,fun solve:nomenify_variables/1},
{noap,fun solve:nomenify_applies/1},
{sort,fun solve:new_order/1},
{deco,fun solve:derive_constraints/1},
{rmcp,fun solve:strip_caps/1},
{tur1,fun solve:turtle_necks1/1},
{tur2,fun solve:turtle_necks2/1},
{baf1,fun solve:baffling_sums1/1},
{baf2,fun solve:baffling_sums2/1},
{sude,fun solve:superfluous_defines/1},
{trac,fun solve:transitive_closure/1},
{maco,fun solve:match_constructors/1},
{soco,fun solve:solve_constraints/1},
{cono,fun solve:constant_nomens/1},
{drun,fun solve:drop_unused/1},
{eqno,fun solve:equate_nomens/1},
{sums,fun solve:sort_sums/1},
{arsu,fun solve:arrow_sums/1},
{free,fun solve:free_variables/1}].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment