Closed duylethanh closed 1 year ago
We can see no reason why this can not be done using a file and the instance functionality of SimExPal. Whenever an experiment requires a file to read from, this either has to be implemented using file I/O routines or in this case reading in from stdin
. Both cases require file I/O capabilities.
Right now , simexpal does not support experiments, which get their input from
stdin
e.g. experiments with commandcat <instance> | <executable>
do not work. This is due to the fact that we are launching experiments viasubprocess.Popen()
withshell=False
.We could add that functionality by opening such instances as
stdin
or offering a way to enableshell=True
.