Initializes the Prolog engine, using the String argument parameters passed. This method need be called only if you want to both (i) initialise the Prolog engine with parameters other than the default ones and (ii) force initialisation to occur (rather than allow it to occur automatically at the firs
(String[] args)
| 271 | * @return true iff initialization was new; false if already initialized |
| 272 | */ |
| 273 | public static boolean init(String[] args) { |
| 274 | return Prolog.set_default_init_args(args) && init(); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * Initialises the Prolog engine using the current default initialisation |
no test coverage detected