├── .gitignore ├── COPYING ├── COPYING.LESSER ├── Makefile.inc ├── README.md ├── callgraph ├── Makefile ├── README ├── VERSION ├── examples │ ├── callgraph.pdf │ ├── callgraph_dot.dot │ ├── callgraph_dot.pdf │ ├── test.pl │ ├── test2.pl │ ├── testmod1.pl │ └── testmod2.pl ├── pack.pl ├── prolog │ ├── callgraph.pl │ └── library │ │ └── dot.pl └── release │ ├── callgraph-0.3.0.tgz │ ├── callgraph-0.3.1.tgz │ ├── callgraph-0.3.2.tgz │ ├── callgraph-0.3.3.tgz │ ├── callgraph-0.3.4.tgz │ ├── callgraph-0.3.5.tgz │ ├── callgraph-0.4.0.tgz │ └── callgraph-0.4.1.tgz ├── cclab ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── ccbeam │ │ ├── README.md │ │ ├── ccbeam1.pl │ │ ├── ccbeam2.pl │ │ ├── ccbeam3.pl │ │ ├── ccbeam4.pl │ │ ├── test_beam.pl │ │ ├── test_beam_nd.pl │ │ └── test_vbeam.pl │ ├── ccdcg.pl │ ├── ccdetmem.pl │ ├── cclazy │ │ ├── COPYING │ │ ├── ccmemo.pl │ │ ├── ccprob.pl │ │ ├── ccvmemo.pl │ │ ├── ccvprob.pl │ │ ├── test_memo.pl │ │ ├── test_prob.pl │ │ ├── test_vmemo.pl │ │ ├── test_vprob.pl │ │ └── treeutils.pl │ ├── cclistm.pl │ ├── ccmacros.pl │ ├── ccmacros2.pl │ ├── ccmisc │ │ └── state_nondet2.pl │ ├── cctab │ │ ├── COPYING │ │ ├── README.md │ │ ├── ccptab1.pl │ │ ├── ccptab2.pl │ │ ├── ccptab3.pl │ │ ├── ccptab4.pl │ │ ├── cctab.pl │ │ ├── cctab2.pl │ │ ├── cctab3.pl │ │ ├── cctab4.pl │ │ ├── cctab5.pl │ │ ├── cctab6.pl │ │ ├── cctab7.pl │ │ ├── cctab8.pl │ │ ├── cctab9.pl │ │ ├── junk.pl │ │ ├── lazymath.pl │ │ ├── machines.pl │ │ ├── ptabled.pl │ │ └── tabled.pl │ ├── lambda1.pl │ └── lambda2.pl └── release │ ├── cclab-0.0.1.tgz │ ├── cclab-0.0.2.tgz │ ├── cclab-0.0.3.tgz │ ├── cclab-0.0.4.tgz │ ├── cclab-0.0.5.tgz │ ├── cclab-0.0.6.tgz │ ├── cclab-0.0.7.tgz │ ├── cclab-0.0.8.tgz │ ├── cclab-0.0.9.tgz │ ├── cclab-0.1.0.tgz │ ├── cclab-0.1.1.tgz │ ├── cclab-0.1.2.tgz │ ├── cclab-0.1.3.tgz │ ├── cclab-0.1.4.tgz │ └── cclab-0.1.5.tgz ├── dcgutils ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── dcg_codes.pl │ ├── dcg_core.pl │ ├── dcg_macros.pl │ ├── dcg_pair.pl │ ├── dcg_progress.pl │ ├── dcg_shell.pl │ └── snobol.pl └── release │ ├── dcgutils-0.0.1.tgz │ ├── dcgutils-0.0.2.tgz │ ├── dcgutils-0.0.3.tgz │ ├── dcgutils-0.0.4.tgz │ ├── dcgutils-0.0.5.tgz │ ├── dcgutils-0.0.6.tgz │ ├── dcgutils-0.0.7.tgz │ ├── dcgutils-0.0.8.tgz │ ├── dcgutils-0.0.9.tgz │ ├── dcgutils-1.0.0.tgz │ ├── dcgutils-1.0.1.tgz │ ├── dcgutils-1.0.2.tgz │ ├── dcgutils-1.0.3.tgz │ ├── dcgutils-1.0.4.tgz │ ├── dcgutils-1.0.5.tgz │ ├── dcgutils-1.0.6.tgz │ ├── dcgutils-1.0.7.tgz │ ├── dcgutils-1.0.8.tgz │ ├── dcgutils-1.1.0.tgz │ ├── dcgutils-1.1.1.tgz │ ├── dcgutils-1.1.2.tgz │ └── dcgutils-1.1.3.tgz ├── fileutils ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ └── fileutils.pl └── release │ ├── fileutils-0.1.1.tgz │ ├── fileutils-0.1.2.tgz │ ├── fileutils-0.1.3.tgz │ ├── fileutils-0.1.4.tgz │ ├── fileutils-0.1.5.tgz │ ├── fileutils-0.2.0.tgz │ ├── fileutils-0.2.1.tgz │ ├── fileutils-0.2.2.tgz │ ├── fileutils-0.2.3.tgz │ ├── fileutils-0.2.4.tgz │ ├── fileutils-0.3.0.tgz │ ├── fileutils-0.3.1.tgz │ ├── fileutils-0.3.2.tgz │ ├── fileutils-0.3.3.tgz │ ├── fileutils-0.3.4.tgz │ └── fileutils-0.3.5.tgz ├── genutils ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── argutils.pl │ ├── callutils.pl │ ├── ccenv.pl │ ├── ccnbref.pl │ ├── ccreader.pl │ ├── ccref.pl │ ├── ccstate.pl │ ├── clambda.pl │ ├── data │ │ ├── env.pl │ │ ├── pair.pl │ │ ├── store.pl │ │ └── tree.pl │ ├── delimcc.pl │ ├── hostname.pl │ ├── insist.pl │ ├── lambdaki.pl │ ├── lazy.pl │ ├── listutils.pl │ ├── math.pl │ ├── rbutils.pl │ ├── rcutils.pl │ └── termutils.pl └── release │ ├── genutils-0.0.1.tgz │ ├── genutils-0.0.2.tgz │ ├── genutils-0.0.3.tgz │ ├── genutils-0.0.4.tgz │ ├── genutils-0.0.5.tgz │ ├── genutils-0.0.6.tgz │ ├── genutils-0.0.7.tgz │ ├── genutils-0.0.9.tgz │ ├── genutils-0.2.00.tgz │ ├── genutils-0.3.0.tgz │ ├── genutils-0.3.1.tgz │ ├── genutils-0.3.2.tgz │ ├── genutils-0.3.3.tgz │ ├── genutils-0.3.4.tgz │ ├── genutils-0.3.5.tgz │ ├── genutils-0.3.6.tgz │ ├── genutils-0.3.7.tgz │ ├── genutils-0.3.8.tgz │ └── genutils-0.3.9.tgz ├── memo ├── Makefile ├── README ├── VERSION ├── examples │ └── test_memo.pl ├── pack.pl ├── prolog │ └── memo.pl └── release │ ├── memo-0.3.0.tgz │ ├── memo-0.3.1.tgz │ ├── memo-0.3.2.tgz │ ├── memo-0.3.3.tgz │ ├── memo-0.3.4.tgz │ ├── memo-0.3.5.tgz │ ├── memo-0.3.6.tgz │ ├── memo-0.3.7.tgz │ ├── memo-0.4.0.tgz │ ├── memo-0.4.1.tgz │ ├── memo-0.4.2.tgz │ ├── memo-0.4.3.tgz │ ├── memo-0.5.0.tgz │ ├── memo-0.5.1.tgz │ ├── memo-0.5.2.tgz │ ├── memo-0.5.3.tgz │ ├── memo-0.6.0.tgz │ └── memo-0.6.1.tgz ├── midiutils ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── genmidi.pl │ └── mididcg.pl └── release │ ├── midiutils-0.0.1.tgz │ ├── midiutils-0.0.2.tgz │ └── midiutils-0.0.3.tgz ├── musicbrainz ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── lucene.pl │ └── musicbrainz.pl └── release │ ├── musicbrainz-0.5.0.tgz │ ├── musicbrainz-0.5.1.tgz │ ├── musicbrainz-0.6.0.tgz │ ├── musicbrainz-0.6.1.tgz │ ├── musicbrainz-0.6.2.tgz │ ├── musicbrainz-0.6.3.tgz │ ├── musicbrainz-0.6.4.tgz │ ├── musicbrainz-0.6.5.tgz │ ├── musicbrainz-0.6.6.tgz │ ├── musicbrainz-0.6.7.tgz │ ├── musicbrainz-0.7.0.tgz │ └── musicbrainz-0.7.1.tgz ├── musicxml ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── musicxml.pl │ ├── mxml_chords.pl │ └── mxml_portray.pl └── release │ ├── musicxml-0.0.1.tgz │ ├── musicxml-0.0.2.tgz │ └── musicxml-0.0.3.tgz ├── pldb ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── db_aggregate.pl │ ├── dcg │ │ ├── algebra.pl │ │ ├── sql.pl │ │ └── sql92.pl │ ├── pldb_core.pl │ ├── pldb_mysql.pl │ ├── pldb_odbc.pl │ ├── pldb_postgres.pl │ ├── pldb_sqlite.pl │ └── pldb_terms.pl └── release │ └── pldb-0.0.1.tgz ├── plsc ├── Makefile ├── README ├── VERSION ├── examples │ └── test_sc.pl ├── pack.pl ├── prolog │ ├── plsc.pl │ └── sc.pl └── release │ └── plsc-0.1.0.tgz ├── plumdrum ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── humdrum.pl │ └── humdrum │ │ ├── dynam.pl │ │ ├── humdrum_world.pl │ │ ├── humutils.pl │ │ ├── interps.pl │ │ ├── kern.pl │ │ ├── kern_rules.pl │ │ ├── kernutils.pl │ │ ├── refcodes.pl │ │ └── reps.pl └── release │ ├── plumdrum-0.0.1.tgz │ ├── plumdrum-0.0.2.tgz │ ├── plumdrum-0.0.3.tgz │ ├── plumdrum-0.0.4.tgz │ ├── plumdrum-0.0.5.tgz │ └── plumdrum-0.0.6.tgz ├── sindice ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ └── sindice.pl └── release │ ├── sindice-0.0.1.tgz │ ├── sindice-0.0.2.tgz │ ├── sindice-0.0.3.tgz │ ├── sindice-0.0.4.tgz │ ├── sindice-0.0.5.tgz │ └── sindice-0.0.7.tgz ├── sparkle ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── concurrency.pl │ ├── sparkle.pl │ └── sparql_dcg.pl └── release │ ├── sparkle-0.0.5.tgz │ ├── sparkle-0.0.6.tgz │ ├── sparkle-0.0.7.tgz │ ├── sparkle-0.0.8.tgz │ ├── sparkle-0.0.9.tgz │ ├── sparkle-0.1.0.tgz │ └── sparkle-0.1.1.tgz ├── swipe ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ └── swipe.pl └── release │ ├── swipe-0.1.0.tgz │ ├── swipe-0.1.1.tgz │ ├── swipe-0.1.2.tgz │ ├── swipe-0.2.0.tgz │ ├── swipe-0.2.1.tgz │ ├── swipe-0.2.2.tgz │ ├── swipe-0.2.3.tgz │ ├── swipe-0.2.4.tgz │ ├── swipe-0.2.5.tgz │ └── swipe-0.2.6.tgz ├── template ├── Makefile ├── README ├── VERSION ├── pack.pl └── prolog │ └── template.pl ├── textutils ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ ├── docutils.pl │ ├── speech.pl │ ├── tconsole.pl │ └── trender.pl └── release │ └── textutils-0.0.1.tgz ├── timeutils ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ └── timedcg.pl └── release │ ├── timeutils-0.0.1.tgz │ ├── timeutils-0.0.2.tgz │ ├── timeutils-0.0.3.tgz │ └── timeutils-0.0.4.tgz ├── typedef ├── Makefile ├── README ├── VERSION ├── pack.pl ├── prolog │ └── typedef.pl └── release │ ├── typedef-0.1.0.tgz │ ├── typedef-0.1.1.tgz │ ├── typedef-0.1.2.tgz │ ├── typedef-0.1.3.tgz │ ├── typedef-0.1.3.zip │ ├── typedef-0.1.4.tgz │ ├── typedef-0.1.4.zip │ ├── typedef-0.1.5.tgz │ ├── typedef-0.1.6.tgz │ ├── typedef-0.1.7.tgz │ ├── typedef-0.1.8.tgz │ └── typedef-0.1.9.tgz └── webutils └── framework ├── base.pl ├── basic.pl ├── bootstrap.pl ├── kube.pl └── pure.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/Makefile.inc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/README.md -------------------------------------------------------------------------------- /callgraph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/Makefile -------------------------------------------------------------------------------- /callgraph/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/README -------------------------------------------------------------------------------- /callgraph/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 2 | -------------------------------------------------------------------------------- /callgraph/examples/callgraph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/callgraph.pdf -------------------------------------------------------------------------------- /callgraph/examples/callgraph_dot.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/callgraph_dot.dot -------------------------------------------------------------------------------- /callgraph/examples/callgraph_dot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/callgraph_dot.pdf -------------------------------------------------------------------------------- /callgraph/examples/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/test.pl -------------------------------------------------------------------------------- /callgraph/examples/test2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/test2.pl -------------------------------------------------------------------------------- /callgraph/examples/testmod1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/testmod1.pl -------------------------------------------------------------------------------- /callgraph/examples/testmod2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/examples/testmod2.pl -------------------------------------------------------------------------------- /callgraph/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/pack.pl -------------------------------------------------------------------------------- /callgraph/prolog/callgraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/prolog/callgraph.pl -------------------------------------------------------------------------------- /callgraph/prolog/library/dot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/prolog/library/dot.pl -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.3.0.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.3.1.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.3.2.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.3.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.3.3.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.3.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.3.4.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.3.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.3.5.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.4.0.tgz -------------------------------------------------------------------------------- /callgraph/release/callgraph-0.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/callgraph/release/callgraph-0.4.1.tgz -------------------------------------------------------------------------------- /cclab/Makefile: -------------------------------------------------------------------------------- 1 | PACKNAME=cclab 2 | include ../Makefile.inc 3 | 4 | -------------------------------------------------------------------------------- /cclab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/README -------------------------------------------------------------------------------- /cclab/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.5 2 | -------------------------------------------------------------------------------- /cclab/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/pack.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/README.md -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/ccbeam1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/ccbeam1.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/ccbeam2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/ccbeam2.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/ccbeam3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/ccbeam3.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/ccbeam4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/ccbeam4.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/test_beam.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/test_beam.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/test_beam_nd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/test_beam_nd.pl -------------------------------------------------------------------------------- /cclab/prolog/ccbeam/test_vbeam.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccbeam/test_vbeam.pl -------------------------------------------------------------------------------- /cclab/prolog/ccdcg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccdcg.pl -------------------------------------------------------------------------------- /cclab/prolog/ccdetmem.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccdetmem.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/COPYING: -------------------------------------------------------------------------------- 1 | Copyright Samer Abdallah (2017) 2 | -------------------------------------------------------------------------------- /cclab/prolog/cclazy/ccmemo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/ccmemo.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/ccprob.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/ccprob.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/ccvmemo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/ccvmemo.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/ccvprob.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/ccvprob.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/test_memo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/test_memo.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/test_prob.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/test_prob.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/test_vmemo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/test_vmemo.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/test_vprob.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/test_vprob.pl -------------------------------------------------------------------------------- /cclab/prolog/cclazy/treeutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclazy/treeutils.pl -------------------------------------------------------------------------------- /cclab/prolog/cclistm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cclistm.pl -------------------------------------------------------------------------------- /cclab/prolog/ccmacros.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccmacros.pl -------------------------------------------------------------------------------- /cclab/prolog/ccmacros2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccmacros2.pl -------------------------------------------------------------------------------- /cclab/prolog/ccmisc/state_nondet2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/ccmisc/state_nondet2.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/COPYING -------------------------------------------------------------------------------- /cclab/prolog/cctab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/README.md -------------------------------------------------------------------------------- /cclab/prolog/cctab/ccptab1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/ccptab1.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/ccptab2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/ccptab2.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/ccptab3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/ccptab3.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/ccptab4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/ccptab4.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab2.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab3.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab4.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab5.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab6.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab6.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab7.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab7.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab8.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab8.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/cctab9.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/cctab9.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/junk.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/junk.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/lazymath.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/lazymath.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/machines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/machines.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/ptabled.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/ptabled.pl -------------------------------------------------------------------------------- /cclab/prolog/cctab/tabled.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/cctab/tabled.pl -------------------------------------------------------------------------------- /cclab/prolog/lambda1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/lambda1.pl -------------------------------------------------------------------------------- /cclab/prolog/lambda2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/prolog/lambda2.pl -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.1.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.2.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.3.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.4.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.5.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.6.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.7.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.8.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.0.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.0.9.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.1.0.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.1.1.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.1.2.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.1.3.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.1.4.tgz -------------------------------------------------------------------------------- /cclab/release/cclab-0.1.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/cclab/release/cclab-0.1.5.tgz -------------------------------------------------------------------------------- /dcgutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/Makefile -------------------------------------------------------------------------------- /dcgutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/README -------------------------------------------------------------------------------- /dcgutils/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.3 2 | -------------------------------------------------------------------------------- /dcgutils/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/pack.pl -------------------------------------------------------------------------------- /dcgutils/prolog/dcg_codes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/dcg_codes.pl -------------------------------------------------------------------------------- /dcgutils/prolog/dcg_core.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/dcg_core.pl -------------------------------------------------------------------------------- /dcgutils/prolog/dcg_macros.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/dcg_macros.pl -------------------------------------------------------------------------------- /dcgutils/prolog/dcg_pair.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/dcg_pair.pl -------------------------------------------------------------------------------- /dcgutils/prolog/dcg_progress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/dcg_progress.pl -------------------------------------------------------------------------------- /dcgutils/prolog/dcg_shell.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/dcg_shell.pl -------------------------------------------------------------------------------- /dcgutils/prolog/snobol.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/prolog/snobol.pl -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.1.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.2.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.3.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.4.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.5.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.6.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.7.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.8.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-0.0.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-0.0.9.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.0.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.1.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.2.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.3.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.4.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.5.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.6.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.7.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.0.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.0.8.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.1.0.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.1.1.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.1.2.tgz -------------------------------------------------------------------------------- /dcgutils/release/dcgutils-1.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/dcgutils/release/dcgutils-1.1.3.tgz -------------------------------------------------------------------------------- /fileutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/Makefile -------------------------------------------------------------------------------- /fileutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/README -------------------------------------------------------------------------------- /fileutils/VERSION: -------------------------------------------------------------------------------- 1 | 0.3.5 2 | -------------------------------------------------------------------------------- /fileutils/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/pack.pl -------------------------------------------------------------------------------- /fileutils/prolog/fileutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/prolog/fileutils.pl -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.1.1.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.1.2.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.1.3.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.1.4.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.1.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.1.5.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.2.0.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.2.1.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.2.2.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.2.3.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.2.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.2.4.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.3.0.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.3.1.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.3.2.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.3.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.3.3.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.3.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.3.4.tgz -------------------------------------------------------------------------------- /fileutils/release/fileutils-0.3.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/fileutils/release/fileutils-0.3.5.tgz -------------------------------------------------------------------------------- /genutils/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=genutils 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /genutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/README -------------------------------------------------------------------------------- /genutils/VERSION: -------------------------------------------------------------------------------- 1 | 0.3.9 2 | -------------------------------------------------------------------------------- /genutils/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/pack.pl -------------------------------------------------------------------------------- /genutils/prolog/argutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/argutils.pl -------------------------------------------------------------------------------- /genutils/prolog/callutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/callutils.pl -------------------------------------------------------------------------------- /genutils/prolog/ccenv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/ccenv.pl -------------------------------------------------------------------------------- /genutils/prolog/ccnbref.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/ccnbref.pl -------------------------------------------------------------------------------- /genutils/prolog/ccreader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/ccreader.pl -------------------------------------------------------------------------------- /genutils/prolog/ccref.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/ccref.pl -------------------------------------------------------------------------------- /genutils/prolog/ccstate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/ccstate.pl -------------------------------------------------------------------------------- /genutils/prolog/clambda.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/clambda.pl -------------------------------------------------------------------------------- /genutils/prolog/data/env.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/data/env.pl -------------------------------------------------------------------------------- /genutils/prolog/data/pair.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/data/pair.pl -------------------------------------------------------------------------------- /genutils/prolog/data/store.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/data/store.pl -------------------------------------------------------------------------------- /genutils/prolog/data/tree.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/data/tree.pl -------------------------------------------------------------------------------- /genutils/prolog/delimcc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/delimcc.pl -------------------------------------------------------------------------------- /genutils/prolog/hostname.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/hostname.pl -------------------------------------------------------------------------------- /genutils/prolog/insist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/insist.pl -------------------------------------------------------------------------------- /genutils/prolog/lambdaki.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/lambdaki.pl -------------------------------------------------------------------------------- /genutils/prolog/lazy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/lazy.pl -------------------------------------------------------------------------------- /genutils/prolog/listutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/listutils.pl -------------------------------------------------------------------------------- /genutils/prolog/math.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/math.pl -------------------------------------------------------------------------------- /genutils/prolog/rbutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/rbutils.pl -------------------------------------------------------------------------------- /genutils/prolog/rcutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/rcutils.pl -------------------------------------------------------------------------------- /genutils/prolog/termutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/prolog/termutils.pl -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.1.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.2.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.3.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.4.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.5.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.6.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.7.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.0.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.0.9.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.2.00.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.2.00.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.0.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.1.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.2.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.3.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.4.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.5.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.6.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.7.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.8.tgz -------------------------------------------------------------------------------- /genutils/release/genutils-0.3.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/genutils/release/genutils-0.3.9.tgz -------------------------------------------------------------------------------- /memo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/Makefile -------------------------------------------------------------------------------- /memo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/README -------------------------------------------------------------------------------- /memo/VERSION: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /memo/examples/test_memo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/examples/test_memo.pl -------------------------------------------------------------------------------- /memo/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/pack.pl -------------------------------------------------------------------------------- /memo/prolog/memo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/prolog/memo.pl -------------------------------------------------------------------------------- /memo/release/memo-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.0.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.1.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.2.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.3.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.4.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.5.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.6.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.3.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.3.7.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.4.0.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.4.1.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.4.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.4.2.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.4.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.4.3.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.5.0.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.5.1.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.5.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.5.2.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.5.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.5.3.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.6.0.tgz -------------------------------------------------------------------------------- /memo/release/memo-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/memo/release/memo-0.6.1.tgz -------------------------------------------------------------------------------- /midiutils/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=midiutils 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /midiutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/README -------------------------------------------------------------------------------- /midiutils/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.3 2 | -------------------------------------------------------------------------------- /midiutils/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/pack.pl -------------------------------------------------------------------------------- /midiutils/prolog/genmidi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/prolog/genmidi.pl -------------------------------------------------------------------------------- /midiutils/prolog/mididcg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/prolog/mididcg.pl -------------------------------------------------------------------------------- /midiutils/release/midiutils-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/release/midiutils-0.0.1.tgz -------------------------------------------------------------------------------- /midiutils/release/midiutils-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/release/midiutils-0.0.2.tgz -------------------------------------------------------------------------------- /midiutils/release/midiutils-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/midiutils/release/midiutils-0.0.3.tgz -------------------------------------------------------------------------------- /musicbrainz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/Makefile -------------------------------------------------------------------------------- /musicbrainz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/README -------------------------------------------------------------------------------- /musicbrainz/VERSION: -------------------------------------------------------------------------------- 1 | 0.7.1 2 | -------------------------------------------------------------------------------- /musicbrainz/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/pack.pl -------------------------------------------------------------------------------- /musicbrainz/prolog/lucene.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/prolog/lucene.pl -------------------------------------------------------------------------------- /musicbrainz/prolog/musicbrainz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/prolog/musicbrainz.pl -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.5.0.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.5.1.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.0.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.1.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.2.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.3.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.4.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.5.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.6.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.6.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.6.7.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.7.0.tgz -------------------------------------------------------------------------------- /musicbrainz/release/musicbrainz-0.7.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicbrainz/release/musicbrainz-0.7.1.tgz -------------------------------------------------------------------------------- /musicxml/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=musicxml 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /musicxml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/README -------------------------------------------------------------------------------- /musicxml/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.3 2 | -------------------------------------------------------------------------------- /musicxml/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/pack.pl -------------------------------------------------------------------------------- /musicxml/prolog/musicxml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/prolog/musicxml.pl -------------------------------------------------------------------------------- /musicxml/prolog/mxml_chords.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/prolog/mxml_chords.pl -------------------------------------------------------------------------------- /musicxml/prolog/mxml_portray.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/prolog/mxml_portray.pl -------------------------------------------------------------------------------- /musicxml/release/musicxml-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/release/musicxml-0.0.1.tgz -------------------------------------------------------------------------------- /musicxml/release/musicxml-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/release/musicxml-0.0.2.tgz -------------------------------------------------------------------------------- /musicxml/release/musicxml-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/musicxml/release/musicxml-0.0.3.tgz -------------------------------------------------------------------------------- /pldb/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=pldb 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /pldb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/README -------------------------------------------------------------------------------- /pldb/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /pldb/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/pack.pl -------------------------------------------------------------------------------- /pldb/prolog/db_aggregate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/db_aggregate.pl -------------------------------------------------------------------------------- /pldb/prolog/dcg/algebra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/dcg/algebra.pl -------------------------------------------------------------------------------- /pldb/prolog/dcg/sql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/dcg/sql.pl -------------------------------------------------------------------------------- /pldb/prolog/dcg/sql92.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/dcg/sql92.pl -------------------------------------------------------------------------------- /pldb/prolog/pldb_core.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/pldb_core.pl -------------------------------------------------------------------------------- /pldb/prolog/pldb_mysql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/pldb_mysql.pl -------------------------------------------------------------------------------- /pldb/prolog/pldb_odbc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/pldb_odbc.pl -------------------------------------------------------------------------------- /pldb/prolog/pldb_postgres.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/pldb_postgres.pl -------------------------------------------------------------------------------- /pldb/prolog/pldb_sqlite.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/pldb_sqlite.pl -------------------------------------------------------------------------------- /pldb/prolog/pldb_terms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/prolog/pldb_terms.pl -------------------------------------------------------------------------------- /pldb/release/pldb-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/pldb/release/pldb-0.0.1.tgz -------------------------------------------------------------------------------- /plsc/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=plsc 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /plsc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plsc/README -------------------------------------------------------------------------------- /plsc/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | -------------------------------------------------------------------------------- /plsc/examples/test_sc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plsc/examples/test_sc.pl -------------------------------------------------------------------------------- /plsc/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plsc/pack.pl -------------------------------------------------------------------------------- /plsc/prolog/plsc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plsc/prolog/plsc.pl -------------------------------------------------------------------------------- /plsc/prolog/sc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plsc/prolog/sc.pl -------------------------------------------------------------------------------- /plsc/release/plsc-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plsc/release/plsc-0.1.0.tgz -------------------------------------------------------------------------------- /plumdrum/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=plumdrum 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /plumdrum/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/README -------------------------------------------------------------------------------- /plumdrum/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.6 2 | -------------------------------------------------------------------------------- /plumdrum/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/pack.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/dynam.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/dynam.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/humdrum_world.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/humdrum_world.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/humutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/humutils.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/interps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/interps.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/kern.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/kern.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/kern_rules.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/kern_rules.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/kernutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/kernutils.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/refcodes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/refcodes.pl -------------------------------------------------------------------------------- /plumdrum/prolog/humdrum/reps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/prolog/humdrum/reps.pl -------------------------------------------------------------------------------- /plumdrum/release/plumdrum-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/release/plumdrum-0.0.1.tgz -------------------------------------------------------------------------------- /plumdrum/release/plumdrum-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/release/plumdrum-0.0.2.tgz -------------------------------------------------------------------------------- /plumdrum/release/plumdrum-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/release/plumdrum-0.0.3.tgz -------------------------------------------------------------------------------- /plumdrum/release/plumdrum-0.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/release/plumdrum-0.0.4.tgz -------------------------------------------------------------------------------- /plumdrum/release/plumdrum-0.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/release/plumdrum-0.0.5.tgz -------------------------------------------------------------------------------- /plumdrum/release/plumdrum-0.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/plumdrum/release/plumdrum-0.0.6.tgz -------------------------------------------------------------------------------- /sindice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/Makefile -------------------------------------------------------------------------------- /sindice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/README -------------------------------------------------------------------------------- /sindice/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.7 2 | -------------------------------------------------------------------------------- /sindice/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/pack.pl -------------------------------------------------------------------------------- /sindice/prolog/sindice.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/prolog/sindice.pl -------------------------------------------------------------------------------- /sindice/release/sindice-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/release/sindice-0.0.1.tgz -------------------------------------------------------------------------------- /sindice/release/sindice-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/release/sindice-0.0.2.tgz -------------------------------------------------------------------------------- /sindice/release/sindice-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/release/sindice-0.0.3.tgz -------------------------------------------------------------------------------- /sindice/release/sindice-0.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/release/sindice-0.0.4.tgz -------------------------------------------------------------------------------- /sindice/release/sindice-0.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/release/sindice-0.0.5.tgz -------------------------------------------------------------------------------- /sindice/release/sindice-0.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sindice/release/sindice-0.0.7.tgz -------------------------------------------------------------------------------- /sparkle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/Makefile -------------------------------------------------------------------------------- /sparkle/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/README -------------------------------------------------------------------------------- /sparkle/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.1 2 | -------------------------------------------------------------------------------- /sparkle/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/pack.pl -------------------------------------------------------------------------------- /sparkle/prolog/concurrency.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/prolog/concurrency.pl -------------------------------------------------------------------------------- /sparkle/prolog/sparkle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/prolog/sparkle.pl -------------------------------------------------------------------------------- /sparkle/prolog/sparql_dcg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/prolog/sparql_dcg.pl -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.0.5.tgz -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.0.6.tgz -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.0.7.tgz -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.0.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.0.8.tgz -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.0.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.0.9.tgz -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.1.0.tgz -------------------------------------------------------------------------------- /sparkle/release/sparkle-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/sparkle/release/sparkle-0.1.1.tgz -------------------------------------------------------------------------------- /swipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/Makefile -------------------------------------------------------------------------------- /swipe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/README -------------------------------------------------------------------------------- /swipe/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.6 2 | -------------------------------------------------------------------------------- /swipe/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/pack.pl -------------------------------------------------------------------------------- /swipe/prolog/swipe.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/prolog/swipe.pl -------------------------------------------------------------------------------- /swipe/release/swipe-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.1.0.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.1.1.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.1.2.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.0.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.1.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.2.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.3.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.4.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.5.tgz -------------------------------------------------------------------------------- /swipe/release/swipe-0.2.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/swipe/release/swipe-0.2.6.tgz -------------------------------------------------------------------------------- /template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/template/Makefile -------------------------------------------------------------------------------- /template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/template/README -------------------------------------------------------------------------------- /template/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /template/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/template/pack.pl -------------------------------------------------------------------------------- /template/prolog/template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/template/prolog/template.pl -------------------------------------------------------------------------------- /textutils/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=textutils 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /textutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/README -------------------------------------------------------------------------------- /textutils/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /textutils/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/pack.pl -------------------------------------------------------------------------------- /textutils/prolog/docutils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/prolog/docutils.pl -------------------------------------------------------------------------------- /textutils/prolog/speech.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/prolog/speech.pl -------------------------------------------------------------------------------- /textutils/prolog/tconsole.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/prolog/tconsole.pl -------------------------------------------------------------------------------- /textutils/prolog/trender.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/prolog/trender.pl -------------------------------------------------------------------------------- /textutils/release/textutils-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/textutils/release/textutils-0.0.1.tgz -------------------------------------------------------------------------------- /timeutils/Makefile: -------------------------------------------------------------------------------- 1 | PACKNAME=timeutils 2 | include ../Makefile.inc 3 | 4 | -------------------------------------------------------------------------------- /timeutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/README -------------------------------------------------------------------------------- /timeutils/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.4 2 | -------------------------------------------------------------------------------- /timeutils/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/pack.pl -------------------------------------------------------------------------------- /timeutils/prolog/timedcg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/prolog/timedcg.pl -------------------------------------------------------------------------------- /timeutils/release/timeutils-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/release/timeutils-0.0.1.tgz -------------------------------------------------------------------------------- /timeutils/release/timeutils-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/release/timeutils-0.0.2.tgz -------------------------------------------------------------------------------- /timeutils/release/timeutils-0.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/release/timeutils-0.0.3.tgz -------------------------------------------------------------------------------- /timeutils/release/timeutils-0.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/timeutils/release/timeutils-0.0.4.tgz -------------------------------------------------------------------------------- /typedef/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PACKNAME=typedef 3 | include ../Makefile.inc 4 | 5 | -------------------------------------------------------------------------------- /typedef/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/README -------------------------------------------------------------------------------- /typedef/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.9 2 | -------------------------------------------------------------------------------- /typedef/pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/pack.pl -------------------------------------------------------------------------------- /typedef/prolog/typedef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/prolog/typedef.pl -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.0.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.1.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.2.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.3.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.3.zip -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.4.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.4.zip -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.5.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.6.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.7.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.8.tgz -------------------------------------------------------------------------------- /typedef/release/typedef-0.1.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/typedef/release/typedef-0.1.9.tgz -------------------------------------------------------------------------------- /webutils/framework/base.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/webutils/framework/base.pl -------------------------------------------------------------------------------- /webutils/framework/basic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/webutils/framework/basic.pl -------------------------------------------------------------------------------- /webutils/framework/bootstrap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/webutils/framework/bootstrap.pl -------------------------------------------------------------------------------- /webutils/framework/kube.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/webutils/framework/kube.pl -------------------------------------------------------------------------------- /webutils/framework/pure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samer--/prolog/HEAD/webutils/framework/pure.pl --------------------------------------------------------------------------------