implements all the OpenMOLE features. However you may be interested in using OpenMOLE in interactive console mode.
To do so, use the 
The only difference between the script in the console mode and the ones from the editor concerns the way you launch the execution, you cancel it and you follow the execution progress. An console workflow is launched like this:
   
 Using the ex and the env variables you can follow the progress of the execution by using the commands: 
. To cancel the execution you should use: 
    In console mode, you can define an authentication using a pair of login / password with the following command:
    
 SSHAuthentication += LoginPassword("login", encrypted, "machine-name")
     Or to authenticate with a private key:
     
SSHAuthentication += PrivateKey("/path/to/the/private/key", "login", encrypted, "machine-name")
 function. This function will prompt for the password/passphrase of the private key right after the call to the builder of the 
: "machine-name" should match exactly the address of the machine in your execution environment. OpenMOLE searches the matching ssh keys using an 
    In console mode, you have to copy-paste your whole workflow to run it.
    The only difference between the script in the console mode and the ones from the editor concerns the way you launch the execution,
    you cancel it and you follow the execution progress.
    A console workflow is launched like this:
    
val ex = exploration -< (model on env) start
    Note that you need to invoke the 
start on your workflow, in contrary to Editor mode.
    
    Using the 
ex and the 
env variables you can follow the progress of the execution by using the commands:
    
print(ex) and 
print(env).
    
    To cancel the execution you should use: 
ex.cancel.