-- Copyright 1993-1998, by the Cecil Project -- Department of Computer Science and Engineering, University of Washington -- See the LICENSE file for license information. (** library("noevalstdlib") **) include "prelude.small.cecil"; -- Fancier numbers: include "big-int.cecil"; -- Fancier kinds of collections: include "unordered.cecil"; include "bag.cecil"; include "set.cecil"; include "small-set.cecil"; include "hash-set.cecil"; include "keyed-set.cecil"; include "hash-keyed-set.cecil"; include "bit-set.cecil"; include "hash-table.cecil"; include "chained-hash-table.cecil"; include "copy-on-write-table.cecil"; include "mapped.cecil"; include "filtered.cecil"; include "array.cecil"; include "float-vector.cecil"; include "word-vector.cecil"; include "bit-vector.cecil"; include "stack.cecil"; include "queue.cecil"; include "sorted.cecil"; include "skiplist.cecil"; include "collector.cecil"; include "histogram.cecil"; -- Streams: include "stream.cecil"; include "file.cecil"; include "list-stream.cecil"; include "indexed-stream.cecil"; include "randstream.cecil"; include "ask.cecil"; -- Miscellaneous data structures: include "matrix.cecil"; include "graph.cecil"; include "partial-order.cecil"; include "union-find-set.cecil"; include "dominant-union-find-set.cecil"; include "text-lines.cecil"; include "time.cecil"; include "msg.cecil"; include "env.cecil"; -- Graphical libraries: -- for now, include motif.cecil explicitly in applications that need it -- (this avoids linking in a bunch of X libraries unnecessarily) -- include "motif.cecil";