From: <jom...@us...> - 2013-12-02 18:22:13
|
Revision: 1764 http://sourceforge.net/p/jason/svn/1764 Author: jomifred Date: 2013-12-02 18:22:10 +0000 (Mon, 02 Dec 2013) Log Message: ----------- fix typos in release notes Modified Paths: -------------- trunk/applications/as-unit-test/src/jason/tests/TestPlanbodyAsTerm.java trunk/release-notes.txt Modified: trunk/applications/as-unit-test/src/jason/tests/TestPlanbodyAsTerm.java =================================================================== --- trunk/applications/as-unit-test/src/jason/tests/TestPlanbodyAsTerm.java 2013-11-25 10:42:24 UTC (rev 1763) +++ trunk/applications/as-unit-test/src/jason/tests/TestPlanbodyAsTerm.java 2013-12-02 18:22:10 UTC (rev 1764) @@ -31,7 +31,11 @@ "+!g({A; R}) <- A; !g(R). "+ "+!g(A) <- A." + - "+!g2(A) <- jason.asunit.print(A)." + "+!g2(A) <- jason.asunit.print(A)."+ + + "+!trl <- !myadd( { jason.asunit.print(a); jason.asunit.print(b) } ); !grl. "+ + "+!myadd(Action) <- .add_plan( {+!grl : c <- Action} ); .add_plan( {+!grl <- jason.asunit.print(ops) } )." + ); } @@ -85,4 +89,14 @@ ag.assertPrint("b200", 5); ag.assertPrint("end50", 5); } + + @Test(timeout=2000) + public void test8() { + ag.addGoal("trl"); + ag.assertPrint("ops", 5); + ag.addBel("c"); + ag.addGoal("trl"); + ag.assertPrint("a", 5); + ag.assertPrint("b", 5); + } } Modified: trunk/release-notes.txt =================================================================== --- trunk/release-notes.txt 2013-11-25 10:42:24 UTC (rev 1763) +++ trunk/release-notes.txt 2013-12-02 18:22:10 UTC (rev 1764) @@ -125,7 +125,7 @@ --------------------------- New features -- Initial implementation of Cycled Terms +- Initial implementation of Cyclic Terms - JaCaMo infrastructure (in beta) Bugs fixed @@ -231,7 +231,7 @@ New features - creation of meta events for goal state change. States are: - - created the goal has been crated, e.g. !g in a plan + - started the goal has been started, e.g. !g in a plan - finished the goal has been achieved, e.g. a plan for !g has finished - failed e.g. the goal has failed This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |