#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!!!
Note:
See TracTickets
for help on using tickets.
Implemented in r21670.