| 1 | ================================================================ |
|---|
| 2 | Logtalk - Open source object-oriented logic programming language |
|---|
| 3 | Release 2.33.3 |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 1998-2008 Paulo Moura. All Rights Reserved. |
|---|
| 6 | Logtalk is free software. You can redistribute it and/or modify |
|---|
| 7 | it under the terms of the "Artistic License 2.0" as published by |
|---|
| 8 | The Perl Foundation. Consult the "LICENSE.txt" file for details. |
|---|
| 9 | ================================================================ |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | This folder contains some useful objects, categories, and protocols. |
|---|
| 13 | |
|---|
| 14 | To load a group of objects, protocols, and categories in this library |
|---|
| 15 | either change your Prolog working directory to this folder and then |
|---|
| 16 | compile and load the corresponding loader utility file or simply use |
|---|
| 17 | the notation library(<loader file>) as argument for the compiling and |
|---|
| 18 | loading predicates. For example: |
|---|
| 19 | |
|---|
| 20 | | ?- logtalk_load(library(random_loader)). |
|---|
| 21 | |
|---|
| 22 | Currently, there are ten groups of entities defined, each one with its |
|---|
| 23 | own loader and notes files: |
|---|
| 24 | |
|---|
| 25 | dates |
|---|
| 26 | dates_loader.lgt |
|---|
| 27 | dates.notes |
|---|
| 28 | |
|---|
| 29 | debugging |
|---|
| 30 | debugging_loader.lgt |
|---|
| 31 | debugging.notes |
|---|
| 32 | |
|---|
| 33 | dependents |
|---|
| 34 | dependents_loader.lgt |
|---|
| 35 | dependents.notes |
|---|
| 36 | |
|---|
| 37 | events |
|---|
| 38 | events_loader.lgt |
|---|
| 39 | events.notes |
|---|
| 40 | |
|---|
| 41 | hierarchies |
|---|
| 42 | hierarchies_loader.lgt |
|---|
| 43 | hierarchies.notes |
|---|
| 44 | |
|---|
| 45 | lgtunit |
|---|
| 46 | lgtunit_loader.lgt |
|---|
| 47 | lgtunit.notes |
|---|
| 48 | |
|---|
| 49 | metapredicates |
|---|
| 50 | metapredicates_loader.lgt |
|---|
| 51 | metapredicates.notes |
|---|
| 52 | |
|---|
| 53 | random |
|---|
| 54 | random_loader.lgt |
|---|
| 55 | random.notes |
|---|
| 56 | |
|---|
| 57 | statistics |
|---|
| 58 | statistics_loader.lgt |
|---|
| 59 | statistics.notes |
|---|
| 60 | |
|---|
| 61 | types |
|---|
| 62 | types_loader.lgt |
|---|
| 63 | types.notes |
|---|
| 64 | |
|---|
| 65 | There is also a file named all_loader.lgt that will load all entities in the |
|---|
| 66 | groups listed above. Simply type the goal: |
|---|
| 67 | |
|---|
| 68 | | ?- logtalk_load(library(all_loader)). |
|---|
| 69 | |
|---|
| 70 | Specific notes about each group of objects, categories, and protocols can be |
|---|
| 71 | found in the corresponding *.notes files. |
|---|
| 72 | |
|---|
| 73 | Some of the files contained in this directory represent work in progress and |
|---|
| 74 | are not loaded by default by any loader utility file. |
|---|
| 75 | |
|---|
| 76 | Some of the code in this library is based on public domain Prolog code, in |
|---|
| 77 | particular, code adopted from the Edinburgh Prolog library. The definition |
|---|
| 78 | of predicate reverse/2 in object list is from Richard O'Keefe and can be found |
|---|
| 79 | in its book "The Craft of Prolog". |
|---|
| 80 | |
|---|
| 81 | By default, compiling any group of entities described above generates a .xml |
|---|
| 82 | documenting file for each compiled entity (object, category, or protocol). |
|---|
| 83 | See the xml sub-directory for instructions on how to browse the .xml files |
|---|
| 84 | for on-line reading or how to convert the files to a print-ready format such |
|---|
| 85 | as PDF. |
|---|
| 86 | |
|---|
| 87 | All source files are formatted using four-space tabs. |
|---|