generateConnector static method
Generates collateral for building and executing a cosimulation.
Generated files will be dumped into directory
.
If enableLogging
is true, then the python connector will print
debug messages.
Implementation
static void generateConnector(
{String directory = './',
String pythonModuleName = defaultPythonModuleName,
bool enableLogging = false}) {
Directory(directory).createSync(recursive: true);
_createPythonFile(directory, pythonModuleName, _registrees, enableLogging);
}