Logtalk 2.15.0 release files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@757 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura 2003-02-05 00:15:28 +00:00
parent c060e91cfc
commit 75392e54c7
266 changed files with 1479 additions and 617 deletions

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================
@ -10,6 +10,22 @@ RELEASE NOTES
============= =============
2.15.0 - February 5, 2003
Changed "authors" key in info/1 directive to "author".
Corrected documentation of built-in local method this/1.
New geometric shapes example implemented in two versions, one
prototype-based and the other one class-based.
Improved support for jEdit text editor by adding a set of programming
templates for use with the editor Templates plug-in.
Added basic support for syntax highlighting and programming templates
for MacOS X Project builder.
2.14.7 - January 10, 2003 2.14.7 - January 10, 2003
Corrected a bug in the built-in methods asserta/1 and assertz/1 when Corrected a bug in the built-in methods asserta/1 and assertz/1 when

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================
@ -52,3 +52,9 @@ objects, protocols, and categories.
Logtalk version 2.14.7 changes compiled code in order to optimize the Logtalk version 2.14.7 changes compiled code in order to optimize the
code generated by the compilation of dynamic predicate clauses. code generated by the compilation of dynamic predicate clauses.
Logtalk version 2.15.0 changes the "authors" key in the directive info/1 to
"author". All the XSLT, DTD, and XSD files have been update to conform to
this change. If you use the directive info/1 in your programs, you will need
to apply this change to take advantage of automatic generation of documenting
files.

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================
@ -99,6 +99,10 @@ searching
example adopted from Ivan Bratko's "Prolog Programming for Artificial example adopted from Ivan Bratko's "Prolog Programming for Artificial
Intelligence" book Intelligence" book
shapes
geometric shapes implemented as both a prototype hierarchy and a class
hierarchy
sicstus sicstus
examples adopted from SICStus Objects documentation examples adopted from SICStus Objects documentation

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/2/18, date is 2000/2/18,
comment is 'Bird descriptors predicates.', comment is 'Bird descriptors predicates.',

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/2/18, date is 2000/2/18,
comment is 'Expert system for bird identification.', comment is 'Expert system for bird identification.',

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
date is 2000/10/31, date is 2000/10/31,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Two-dimensional brick (or should I say square?) class.']). comment is 'Two-dimensional brick (or should I say square?) class.']).

View File

@ -6,7 +6,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Stack of bricks as a constrained binary relation.']). comment is 'Stack of bricks as a constrained binary relation.']).

View File

@ -6,7 +6,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Monitor for brick movements printing an ascii representation of each brick position.']). comment is 'Monitor for brick movements printing an ascii representation of each brick position.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Air-line trip planner.', comment is 'Air-line trip planner.',

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
parnames is ['OX', 'OY'], parnames is ['OX', 'OY'],

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
parnames is ['X', 'Y'], parnames is ['X', 'Y'],

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
parnames is ['Order'], parnames is ['Order'],

View File

@ -3,7 +3,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is '.', comment is '.',

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Expert system for automobile fault diagnosis.', comment is 'Expert system for automobile fault diagnosis.',

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -8,7 +8,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'List sorting parameterized by the type of the list elements.']). comment is 'List sorting parameterized by the type of the list elements.']).

View File

@ -9,7 +9,7 @@
:- info([ :- info([
version is 2, version is 2,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'Tracer for a goal call and exit ports.']). comment is 'Tracer for a goal call and exit ports.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -5,7 +5,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Towers of Hanoi.']). comment is 'Towers of Hanoi.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 1998/3/23, date is 1998/3/23,
comment is 'Dates as parametric objects.', comment is 'Dates as parametric objects.',
parnames is ['Year', 'Month', 'Day']]). parnames is ['Year', 'Month', 'Day']]).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 1998/3/23, date is 1998/3/23,
comment is 'Time as parametric objects.', comment is 'Time as parametric objects.',
parnames is ['Hours', 'Mins', 'Secs']]). parnames is ['Hours', 'Mins', 'Secs']]).

View File

@ -9,7 +9,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Parametric object for representing geometric circles.', comment is 'Parametric object for representing geometric circles.',

View File

@ -5,7 +5,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Parametric object for representing geometric ellipses.', comment is 'Parametric object for representing geometric ellipses.',

View File

@ -7,7 +7,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Parametric object for representing geometric lines.', comment is 'Parametric object for representing geometric lines.',

View File

@ -6,7 +6,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Parametric object for representing geometric points.', comment is 'Parametric object for representing geometric points.',

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -5,7 +5,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Point coordinate bounds management predicates.', comment is 'Point coordinate bounds management predicates.',
source is 'Example adopted from the SICStus Objects documentation.']). source is 'Example adopted from the SICStus Objects documentation.']).

View File

@ -8,7 +8,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
date is 2000/10/31, date is 2000/10/31,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Two dimensional point moving in a constrained area and remembering past point positions.', comment is 'Two dimensional point moving in a constrained area and remembering past point positions.',
source is 'Example adopted from the SICStus Objects documentation.']). source is 'Example adopted from the SICStus Objects documentation.']).

View File

@ -8,7 +8,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
date is 2000/10/31, date is 2000/10/31,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Two dimensional point moving in a constrained area.', comment is 'Two dimensional point moving in a constrained area.',
source is 'Example adopted from the SICStus Objects documentation.']). source is 'Example adopted from the SICStus Objects documentation.']).

View File

@ -8,7 +8,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
date is 2000/10/31, date is 2000/10/31,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Two dimensional point remembering past positions.', comment is 'Two dimensional point remembering past positions.',
source is 'Example adopted from the SICStus Objects documentation.']). source is 'Example adopted from the SICStus Objects documentation.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
date is 2000/10/31, date is 2000/10/31,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Two dimensional point class.', comment is 'Two dimensional point class.',
source is 'Example adopted from the SICStus Objects documentation.']). source is 'Example adopted from the SICStus Objects documentation.']).

View File

@ -5,7 +5,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Point position history management predicates.', comment is 'Point position history management predicates.',
source is 'Example adopted from the SICStus Objects documentation.']). source is 'Example adopted from the SICStus Objects documentation.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -6,7 +6,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Concentric polygons as a constrained binary relation.']). comment is 'Concentric polygons as a constrained binary relation.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Hexagon class.']). comment is 'Hexagon class.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Pentagon class.']). comment is 'Pentagon class.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
date is 2000/10/31, date is 2000/10/31,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Polygon predicates.']). comment is 'Polygon predicates.']).
@ -31,7 +31,7 @@
:- info([ :- info([
version is 2, version is 2,
date is 1998/2/23, date is 1998/2/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Default protocol for all polygons.']). comment is 'Default protocol for all polygons.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Square class.']). comment is 'Square class.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 1998/3/23, date is 1998/3/23,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Triangle class.']). comment is 'Triangle class.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -6,7 +6,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 1998/3/23, date is 1998/3/23,
comment is 'Message counter monitor.']). comment is 'Message counter monitor.']).

View File

@ -6,7 +6,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 1998/3/23, date is 1998/3/23,
comment is 'Message executing time monitor.']). comment is 'Message executing time monitor.']).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 1998/3/23, date is 1998/3/23,
comment is 'Call executing time profiler.']). comment is 'Call executing time profiler.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -5,7 +5,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Default metaclass for all abstract classes.']). comment is 'Default metaclass for all abstract classes.']).

View File

@ -5,7 +5,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Instantiation root and default metaclass for all classes.']). comment is 'Instantiation root and default metaclass for all classes.']).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
authors is 'Paulo Moura', author is 'Paulo Moura',
version is 1.0, version is 1.0,
date is 2000/4/22, date is 2000/4/22,
comment is 'Inheritance root for all objects.']). comment is 'Inheritance root for all objects.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 3, version is 3,
date is 2000/7/24, date is 2000/7/24,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Enables the representation of relations with constraints on the state of participating objects.']). comment is 'Enables the representation of relations with constraints on the state of participating objects.']).

View File

@ -8,7 +8,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 2000/7/24, date is 2000/7/24,
authors is 'Esteban Zimanyi, Paulo Moura', author is 'Esteban Zimanyi, Paulo Moura',
comment is 'Enables the representation of relations between independent objects.']). comment is 'Enables the representation of relations between independent objects.']).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'Relations between objects protocol.']). comment is 'Relations between objects protocol.']).

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -1,6 +1,6 @@
================================================================= =================================================================
Logtalk - Object oriented extension to Prolog Logtalk - Object oriented extension to Prolog
Release 2.14.7 Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved. Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
================================================================= =================================================================

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 2, version is 2,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'Default metaclass for all abstract classes.']). comment is 'Default metaclass for all abstract classes.']).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'Default protocol for all abstract classes.']). comment is 'Default protocol for all abstract classes.']).

View File

@ -7,7 +7,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'Default metaclass for all classes.']). comment is 'Default metaclass for all classes.']).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/7/24, date is 2000/7/24,
comment is 'Default protocol for all instantiable classes.']). comment is 'Default protocol for all instantiable classes.']).

View File

@ -4,7 +4,7 @@
:- info([ :- info([
version is 1.1, version is 1.1,
authors is 'Paulo Moura', author is 'Paulo Moura',
date is 2000/11/5, date is 2000/11/5,
comment is 'Object initialization protocol.']). comment is 'Object initialization protocol.']).

View File

@ -6,7 +6,7 @@
:- info([ :- info([
version is 1.0, version is 1.0,
date is 2000/7/24, date is 2000/7/24,
authors is 'Paulo Moura', author is 'Paulo Moura',
comment is 'Used to represent a void reference.']). comment is 'Used to represent a void reference.']).

Some files were not shown because too many files have changed in this diff Show More