run method

  1. @override
void run()
override

Runs the Datalog program to compute derived facts.

Implementation

@override
void run() {
  if (!_initialized) {
    throw StateError('Engine not initialized');
  }
  _run();
}