fix arena initialization

This commit is contained in:
Vítor Santos Costa
2014-08-23 14:47:40 -05:00
parent 495ab155f9
commit 19d0f56f2d
18 changed files with 362 additions and 187 deletions

View File

@@ -796,7 +796,8 @@ INPUT = docs/yap.md \
packages \
library \
CXX \
OPTYap
OPTYap \
docs/foreigns.yap
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View File

@@ -1295,6 +1295,28 @@ will be used:
+ a preceding minus sign will denote an "output argument";
+ an argument with no preceding symbol can be used in both ways.
@page Features
@subpage CohYroutining
@subpage Attributed_Variables
@subpage Tabling
@subpage Low_Level_Tracing
@subpage Low_Level_Profiling
@subpage Indexing
@subpage Parallelism
@defgroup YAPBuiltins Built-In Predicates
@@ -1420,10 +1442,6 @@ will be used:
@subpage Exo_Intervals
@subpage Gecode
@subpage Heaps
@@ -1502,16 +1520,6 @@ will be used:
@subpage DBUsage
@subpage Lambda
@page pYapPacks YAP Packages
@subpage LAM
@subpage BDDs
@subpage Block_Diagram
@@ -1527,11 +1535,6 @@ will be used:
@subpage Rational_Trees
@subpage CohYroutining
@subpage Attributed_Variables
@subpage New_Style_Attribute_Declarations
@@ -1539,17 +1542,12 @@ will be used:
@subpage Old_Style_Attribute_Declarations
@subpage CLPR_Solver_Predicates
@subpage Lambda
@subpage CLPR_Syntax
@subpage CLPR_Unification
@subpage CLPR_NonhYlinear_Constraints
@page YapPacks YAP Packages
@subpage LAM
@subpage CHR_Introduction
@@ -1572,7 +1570,23 @@ will be used:
@subpage CHR_Guidelines
@subpage Logtalk
@subpage Gecode
@subpage BDDs
@subpage CLPR_Solver_Predicates
@subpage CLPR_Syntax
@subpage CLPR_Unification
@subpage CLPR_NonhYlinear_Constraints
@subpage Creating_and_Destroying_Prolog_Threads
@@ -1587,17 +1601,6 @@ will be used:
@subpage Thread_Synchronisation
@subpage Parallelism
@subpage Tabling
@subpage Low_Level_Tracing
@subpage Low_Level_Profiling
@subpage Debugging
@@ -1608,9 +1611,6 @@ will be used:
@subpage Deb_Interaction
@subpage Indexing
@subpage Loading_Objects
@@ -1824,6 +1824,8 @@ SICStus Prolog use:
+ By default, directives in YAP can be called from the top level.
@page SWILibs SWI Libraries
@subsection Fully_SICStus_Compatible YAP predicates fully compatible with SICStus Prolog

View File

@@ -33,7 +33,7 @@ The same as fail.
*/
/** @pred repeat is iso
Succeeds repeatedly.
bprolqSucceeds repeatedly.
In the next example, `repeat` is used as an efficient way to implement
a loop. The next example reads all terms in a file:
@@ -882,7 +882,7 @@ the loop.
/** @pred tree_to_rational_term(? _TI_,- _TF_)
Inverse of above. The term _TI_ is a tree representation (without
Inverse of rational_term_to_tree/2. The term _TI_ is a tree representation (without
cycles) for the Prolog term _TF_. Loops replace terms of the form
`_LOOP_( _LevelsAbove_)` where _LevelsAbove_ is the size of
the loop.