Skip to content

Commit da193b4

Browse files
committed
use topquadrant for all examples
1 parent 7f39d2c commit da193b4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

notebooks/223P-Brick-model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"outputs": [],
3737
"source": [
3838
"# setup our buildingmotif instance\n",
39-
"bm = BuildingMOTIF(\"sqlite://\")\n",
39+
"bm = BuildingMOTIF(\"sqlite://\", shacl_engine=\"topquadrant\")\n",
4040
"\n",
4141
"# create the model w/ a namespace\n",
4242
"BLDG = Namespace(\"urn:example/\")\n",

notebooks/Compile-model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"metadata": {},
2525
"outputs": [],
2626
"source": [
27-
"building_motif = BuildingMOTIF(\"sqlite://\")\n",
27+
"building_motif = BuildingMOTIF(\"sqlite://\", shacl_engine=\"topquadrant\")\n",
2828
"building_motif.setup_tables()"
2929
]
3030
},

notebooks/Session-example.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"if os.path.isfile(file):\n",
5050
" os.remove(file) \n",
5151
"\n",
52-
"building_motif = BuildingMOTIF(f\"sqlite:///{file}\")\n",
52+
"building_motif = BuildingMOTIF(f\"sqlite:///{file}\", shacl_engine=\"topquadrant\")\n",
5353
"building_motif.setup_tables()\n",
5454
"building_motif.session\n",
5555
"\n",

notebooks/template-example.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"\"\"\"\n",
5353
"As always with BuildingMOTIF, we start by initing BuildingMOTIF.\n",
5454
"\"\"\"\n",
55-
"building_motif = BuildingMOTIF(f\"sqlite://\")\n",
55+
"building_motif = BuildingMOTIF(f\"sqlite://\", shacl_engine=\"topquadrant\")\n",
5656
"building_motif.session\n"
5757
]
5858
},

0 commit comments

Comments
 (0)