Difference between revisions of "Known bugs"

From SUMOwiki
Jump to navigationJump to search
Line 19: Line 19:
 
|-
 
|-
 
|}
 
|}
 +
 +
 +
{| border="0" style="text-align:left"
 +
|-
 +
!'''Bug'''
 +
| When building models multi-objectively the toolbox uses a lot of diskspace and signals a lot of new best models
 +
|-
 +
!'''Status'''
 +
| Fixed in next version
 +
|-
 +
!'''Workaround'''
 +
| Remove in modelbuilders/@AdaptiveModelbuilder/private/orderBestModels.m, remove "|| length(s.bestModels) == 1" so the if looks like "if ( oldBestModelId ~= newBestModelId )"
 +
|-
 +
|}
 +
  
 
<!--
 
<!--

Revision as of 18:25, 9 March 2009

While we always try to test each release as much as we can, inevitably some bugs will always slip through unnoticed. This page only shows the most important bugs that have surfaced after the release was made.

To stay up to date with the latest news and releases, we also recommend subscribing to our newsletter here. Traffic will be kept to a minimum and you can unsubscribe at any time.

If you happen to encounter something not listed here, please report it.

Version 6.1

Bug The ParetoModelBuilder can crash with "unknown function createModelFromIndividual()".
Status Fixed in next version
Workaround Replace the offending line (line 70 in runLoop.m) with: "model = createModel(getModelFactory(s), populationEntry);". Make also sure that you have set the option paretoMode="true".


Bug When building models multi-objectively the toolbox uses a lot of diskspace and signals a lot of new best models
Status Fixed in next version
Workaround Remove in modelbuilders/@AdaptiveModelbuilder/private/orderBestModels.m, remove " length(s.bestModels) == 1" so the if looks like "if ( oldBestModelId ~= newBestModelId )"