Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#2760 closed enhancement (fixed)

Comments in -overrideFile

Reported by: Jan Kokert Owned by: somebody
Priority: normal Milestone: 1.9.1
Component: *unknown* Version: trunk
Keywords: override file Cc:

Description

Hi!

The -overrideFile feature, implemented by Adrian Pop in r13104, is a massive improvement to run parameterized simulations. To allow playing with different parameters, a comment feature would be very nice:

// constantVoltage.V=2
constantCurrent.I=3

It should be easy to implement it. Something like

if line.startsWith("//") || line.startsWith("#")
{
  continue;
}

in trunk/SimulationRuntime/c/simulation/simulation_input_xml.cpp line 1088

By the way: If I intruduce such a comment right now, the rest of the override file is ignored...

Many thanks in advance!!!

Change History (2)

comment:1 by Adrian Pop, 11 years ago

Resolution: fixed
Status: newclosed

Implemented in r21670.

comment:2 by Jan Kokert, 11 years ago

Oh great - many thanks for implementing!

Note: See TracTickets for help on using tickets.