.
├── APP
│ ├── Makefile
│ ├── Makefile.MathLink
│ ├── application.c
│ ├── application.c.trace
│ ├── gb.tm
│ ├── gb.tm.save
│ ├── main.c
│ ├── main.c.save
│ └── mainLink.c
├── GROEBNER
│ ├── bin
│ │ ├── activate-trace
│ │ ├── compute-mask
│ │ └── filter-trace.c
│ ├── include
│ │ ├── CU.coef2ff
│ │ ├── CU.coef2fpn
│ │ ├── CU.coef2gf
│ │ ├── CU.coef2rf
│ │ ├── CU.coef2rn
│ │ ├── CU.list2iter
│ │ ├── CU.list2rec
│ │ ├── CU.poly2pc
│ │ ├── CU.poly2ppoly
│ │ ├── CU.pp2el
│ │ ├── CU.ppoly2dpl
│ │ ├── CU.ps2pl
│ │ ├── CU.rfbd2ff
│ │ ├── CU.rfbd2rn
│ │ ├── GB.coef.setup
│ │ ├── GB.list.setup
│ │ ├── GB.nf.setup
│ │ ├── GB.po.setup
│ │ ├── GB.poly.setup
│ │ ├── GB.pp.setup
│ │ ├── GB.ppoly.setup
│ │ ├── GB.ps.setup
│ │ ├── GB.to.setup
│ │ ├── c_int.h
│ │ ├── dpl.h
│ │ ├── el.h
│ │ ├── error.h
│ │ ├── ff.h
│ │ ├── fpn-old.h
│ │ ├── fpn.h
│ │ ├── gb_criteria.h
│ │ ├── gb_crude.h
│ │ ├── gb_red_all.h
│ │ ├── gb_small_ps.h
│ │ ├── gf.h
│ │ ├── groebner.h
│ │ ├── groebner_globals.h
│ │ ├── init.h
│ │ ├── int.h
│ │ ├── list_iter.h
│ │ ├── list_rec.h
│ │ ├── lp.h
│ │ ├── machine.h
│ │ ├── mathlink.setup
│ │ ├── mon.h
│ │ ├── pa.h
│ │ ├── pc.h
│ │ ├── pl.h
│ │ ├── poly.h
│ │ ├── reductions.h
│ │ ├── rf.h
│ │ ├── rn.h
│ │ ├── syz.h
│ │ ├── timing.h
│ │ └── trace.setup
│ ├── lib
│ │ ├── obj
│ │ │ └── Makefile
│ │ ├── obj_debug
│ │ │ └── Makefile
│ │ └── obj_opt
│ │ └── Makefile
│ └── src
│ ├── c_int.c
│ ├── dpl.c
│ ├── el.c
│ ├── error.c
│ ├── ff.c
│ ├── fpn-old.c
│ ├── fpn.c
│ ├── gb_criteria.c
│ ├── gb_criteria.c.trace
│ ├── gb_crude.c
│ ├── gb_crude.c.trace
│ ├── gb_red_all.c
│ ├── gb_red_all.c.trace
│ ├── gb_small_ps.c
│ ├── gb_small_ps.c.trace
│ ├── gf.c
│ ├── init.c
│ ├── init.c.trace
│ ├── list_iter.c
│ ├── list_rec.c
│ ├── lp.c
│ ├── mon.c
│ ├── pa.c
│ ├── pa.c.trace
│ ├── pc.c
│ ├── pl.c
│ ├── reductions.c
│ ├── reductions.c.trace
│ ├── rf.c
│ ├── rf.c.aux
│ ├── syz.c
│ ├── timing.c
│ └── unused.c
├── GROEBNER-IO
│ ├── bin
│ │ ├── more-and-wait
│ │ ├── set-term-height
│ │ ├── set-term-margin
│ │ └── set-term-width
│ ├── include
│ │ ├── CUIO.coef2ff
│ │ ├── CUIO.coef2fpn
│ │ ├── CUIO.coef2gf
│ │ ├── CUIO.coef2rf
│ │ ├── CUIO.coef2rn
│ │ ├── CUIO.poly2pc
│ │ ├── CUIO.poly2ppoly
│ │ ├── CUIO.pp2el
│ │ ├── CUIO.ppoly2dpl
│ │ ├── CUIO.rfbd2ff
│ │ ├── CUIO.rfbd2rn
│ │ ├── GBIO.format.setup
│ │ ├── conversions.h
│ │ ├── error-io.h
│ │ ├── format.h
│ │ ├── groebner-io.h
│ │ ├── help.h
│ │ ├── init-io.h
│ │ ├── parse.h
│ │ ├── pretty-print.h
│ │ ├── print.h
│ │ ├── read.h
│ │ └── shell.h
│ ├── lib
│ │ ├── obj
│ │ │ └── Makefile
│ │ ├── obj_debug
│ │ │ └── Makefile
│ │ └── obj_opt
│ │ └── Makefile
│ └── src
│ ├── conversions.c
│ ├── error-io.c
│ ├── format.c
│ ├── help.c
│ ├── init-io.c
│ ├── init-io.c.trace
│ ├── lex.c
│ ├── parse.c
│ ├── parse.c.array
│ ├── parse.c.save
│ ├── parse.l
│ ├── parse.y
│ ├── pretty-print.c
│ ├── print.c
│ ├── read.c
│ └── shell.c
├── README
├── bin
│ ├── coef_setup
│ ├── groebner
│ ├── groebner_setup
│ ├── install_groebner
│ ├── l_setup
│ ├── mkgroebner
│ ├── nf_setup
│ ├── po_setup
│ ├── popr_setup
│ ├── pose_setup
│ ├── post_setup
│ ├── pupo_setup
│ ├── rfbd_setup
│ ├── to_setup
│ ├── update_Makefile
│ └── xgroebner
├── docu
│ ├── 2-level-poly.eps
│ ├── GB.dvi
│ ├── black-box.dvi
│ ├── communication-cu-sd.eps
│ ├── communication-d-sd.eps
│ ├── groebnerh.eps
│ ├── hierarchy.eps
│ └── virtual-domain.eps
├── groebner.Xdefaults
├── index.htm
├── input
│ ├── FF
│ │ └── in
│ ├── GF
│ │ └── in
│ ├── RF
│ │ ├── FF
│ │ │ └── in
│ │ └── RN
│ │ └── in
│ ├── RN
│ │ └── in
│ ├── TO
│ │ ├── ex1
│ │ │ ├── in
│ │ │ ├── lex-ra.out
│ │ │ ├── lex-sp.out
│ │ │ ├── lex-tdi-ra.out
│ │ │ ├── lex-tdi-sp.out
│ │ │ ├── tdi-ra.out
│ │ │ └── tdi-sp.out
│ │ ├── ex2
│ │ │ ├── in
│ │ │ ├── lex-ra.out
│ │ │ ├── lex-sp.out
│ │ │ ├── lex-tdi-ra.out
│ │ │ ├── tdi-ra.out
│ │ │ └── tdi-sp.out
│ │ ├── ex3
│ │ │ └── in
│ │ ├── ex4
│ │ │ └── in
│ │ └── ex5
│ │ └── in
│ ├── ex1
│ └── ex2
├── lib
│ └── risc-logo.xbm
└── man
├── groebner.hlp
├── input_file.hlp
├── input_syntax.hlp
├── modpoly.hlp
├── output_file.hlp
└── variables.hlp
35 directories, 206 files
tree v2.1.1 © 1996 - 2023 by Steve Baker and Thomas Moore
HTML output hacked and copyleft © 1998 by Francesc Rocher
JSON output hacked and copyleft © 2014 by Florian Sesser
Charsets / OS/2 support © 2001 by Kyosuke Tokoro