Skip to content

Commit

Permalink
Merge pull request #42 from seldon-code/develop
Browse files Browse the repository at this point in the history
config_parser: Fixed bug in start_numbering_from
  • Loading branch information
amritagos authored Apr 30, 2024
2 parents 047e1bf + 554d76a commit 5bd6f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ void validate_settings( const SimulationOptions & options )

// @TODO: Check that start_output is less than the max_iterations?
check( name_and_var( options.output_settings.start_output ), g_zero );
check( name_and_var( options.output_settings.start_numbering_from ), g_zero );
check( name_and_var( options.output_settings.start_numbering_from ), geq_zero );

auto validate_activity = [&]( const auto & model_settings )
{
Expand Down

0 comments on commit 5bd6f9e

Please sign in to comment.