You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a common problem, and relates to our use of the BOOST program_options library to implement our command line argument processing. Basically, when you get something like
because the underlying code is foolishly trying to parse the -20 as if it were a flag to the program. This can happen any time you have a negative number as a mandatory command line argument (one without a flag in front of it).
Happily, there's an easy solution. You can tell LOOS that you're finished supplying flags by including -- between the flags and the mandatory fields, like this:
However, to do this you have to specify all of the flagged options before you get to the positional options (the mandatory ones that don't take a flag).