From: <sla...@us...> - 2012-03-24 16:32:47
|
Revision: 10026 http://octave.svn.sourceforge.net/octave/?rev=10026&view=rev Author: slackydeb Date: 2012-03-24 16:32:37 +0000 (Sat, 24 Mar 2012) Log Message: ----------- ga: improve error message Modified Paths: -------------- trunk/octave-forge/main/ga/inst/__ga_scores__.m Modified: trunk/octave-forge/main/ga/inst/__ga_scores__.m =================================================================== --- trunk/octave-forge/main/ga/inst/__ga_scores__.m 2012-03-24 16:32:25 UTC (rev 10025) +++ trunk/octave-forge/main/ga/inst/__ga_scores__.m 2012-03-24 16:32:37 UTC (rev 10026) @@ -14,13 +14,12 @@ ## along with this program; If not, see <http://www.gnu.org/licenses/>. ## Author: Luca Favatella <sla...@gm...> -## Version: 5.5.1 +## Version: 5.5.2 function Scores = __ga_scores__ (problem, Population) if (strcmp (problem.options.Vectorized, "on")) ## using vectorized evaluation if (strcmp (problem.options.UseParallel, "always")) - warning ("'Vectorized' option is 'on': ignoring 'UseParallel' \ - option, even if it is 'always'"); + warning ("'Vectorized' option is 'on': ignoring 'UseParallel' option, even if it is 'always'"); endif Scores = problem.fitnessfcn (Population); else ## not using vectorized evaluation This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |