|
@@ -411,5 +411,9 @@ Void function construct_model():
|
|
|
local_name = input()
|
|
|
location = input()
|
|
|
export_node(location, global_models[local_name])
|
|
|
+ elif (command == "import_node"):
|
|
|
+ Element m
|
|
|
+ m = import_node(input())
|
|
|
+ dict_add(global_models, input(), m)
|
|
|
else:
|
|
|
log("Modelling error: did not understand command " + command)
|