From: <mma...@us...> - 2012-02-03 22:34:27
|
Revision: 9580 http://octave.svn.sourceforge.net/octave/?rev=9580&view=rev Author: mmarzolla Date: 2012-02-03 22:34:20 +0000 (Fri, 03 Feb 2012) Log Message: ----------- Package restructuring Modified Paths: -------------- trunk/octave-forge/main/queueing/INSTALL trunk/octave-forge/main/queueing/Makefile trunk/octave-forge/main/queueing/doc/README trunk/octave-forge/main/queueing/doc/installation.txi trunk/octave-forge/main/queueing/doc/queueing.html trunk/octave-forge/main/queueing/doc/queueing.pdf trunk/octave-forge/main/queueing/inst/ctmc_fpt.m Added Paths: ----------- trunk/octave-forge/main/queueing/devel/README Modified: trunk/octave-forge/main/queueing/INSTALL =================================================================== --- trunk/octave-forge/main/queueing/INSTALL 2012-02-03 22:15:32 UTC (rev 9579) +++ trunk/octave-forge/main/queueing/INSTALL 2012-02-03 22:34:20 UTC (rev 9580) @@ -106,7 +106,7 @@ This directory contains examples which are automatically extracted from the `demo' blocks of the function files. -`broken/' +`devel/' This directory contains function files which are either not working properly, or need additional testing before they can be moved to the `inst/' directory. Modified: trunk/octave-forge/main/queueing/Makefile =================================================================== --- trunk/octave-forge/main/queueing/Makefile 2012-02-03 22:15:32 UTC (rev 9579) +++ trunk/octave-forge/main/queueing/Makefile 2012-02-03 22:34:20 UTC (rev 9580) @@ -3,7 +3,7 @@ PROGNAME=queueing DISTNAME=$(PROGNAME)-$(VERSIONNUM) -SUBDIRS=inst scripts examples doc test broken +SUBDIRS=inst scripts examples doc test devel DISTFILES=COPYING NEWS Makefile DESCRIPTION INSTALL DISTSUBDIRS=inst doc Added: trunk/octave-forge/main/queueing/devel/README =================================================================== --- trunk/octave-forge/main/queueing/devel/README (rev 0) +++ trunk/octave-forge/main/queueing/devel/README 2012-02-03 22:34:20 UTC (rev 9580) @@ -0,0 +1,3 @@ +This directory contains scripts which are currently under development; +therefore they may not work correctly, or could be not fully +tested. The content of this directory is ignored by pkg install. Modified: trunk/octave-forge/main/queueing/doc/README =================================================================== --- trunk/octave-forge/main/queueing/doc/README 2012-02-03 22:15:32 UTC (rev 9579) +++ trunk/octave-forge/main/queueing/doc/README 2012-02-03 22:34:20 UTC (rev 9580) @@ -42,7 +42,7 @@ This directory contains the script used to execute all tests embedded within functions in the inst/ directory. -broken/ +devel/ This directory contains scripts which are currently known not to work correctly, or which are work-in-progress. Modified: trunk/octave-forge/main/queueing/doc/installation.txi =================================================================== --- trunk/octave-forge/main/queueing/doc/installation.txi 2012-02-03 22:15:32 UTC (rev 9579) +++ trunk/octave-forge/main/queueing/doc/installation.txi 2012-02-03 22:34:20 UTC (rev 9580) @@ -168,7 +168,7 @@ This directory contains examples which are automatically extracted from the @samp{demo} blocks of the function files. -@item broken/ +@item devel/ This directory contains function files which are either not working properly, or need additional testing before they can be moved to the @file{inst/} directory. Modified: trunk/octave-forge/main/queueing/doc/queueing.html =================================================================== --- trunk/octave-forge/main/queueing/doc/queueing.html 2012-02-03 22:15:32 UTC (rev 9579) +++ trunk/octave-forge/main/queueing/doc/queueing.html 2012-02-03 22:34:20 UTC (rev 9580) @@ -416,7 +416,7 @@ <br><dt><samp><span class="file">examples/</span></samp><dd>This directory contains examples which are automatically extracted from the ‘<samp><span class="samp">demo</span></samp>’ blocks of the function files. - <br><dt><samp><span class="file">broken/</span></samp><dd>This directory contains function files which are either not working + <br><dt><samp><span class="file">devel/</span></samp><dd>This directory contains function files which are either not working properly, or need additional testing before they can be moved to the <samp><span class="file">inst/</span></samp> directory. Modified: trunk/octave-forge/main/queueing/doc/queueing.pdf =================================================================== (Binary files differ) Modified: trunk/octave-forge/main/queueing/inst/ctmc_fpt.m =================================================================== --- trunk/octave-forge/main/queueing/inst/ctmc_fpt.m 2012-02-03 22:15:32 UTC (rev 9579) +++ trunk/octave-forge/main/queueing/inst/ctmc_fpt.m 2012-02-03 22:34:20 UTC (rev 9580) @@ -112,17 +112,17 @@ %! M = ctmc_fpt(Q) %! m = ctmc_fpt(Q,1,3) -%!test +%!xtest %! Q = unifrnd(0.1,0.9,10,10); %! Q -= diag(sum(Q,2)); %! M = ctmc_fpt(Q); -%!test +%!xtest %! Q = unifrnd(0.1,0.9,10,10); %! Q -= diag(sum(Q,2)); %! m = ctmc_fpt(Q,1,3); -%!test +%!xtest %! Q = unifrnd(0.1,0.9,10,10); %! Q -= diag(sum(Q,2)); %! m = ctmc_fpt(Q,1,[3 5 6]); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |