|
| 1 | +{ |
| 2 | + "cells": [ |
| 3 | + { |
| 4 | + "cell_type": "code", |
| 5 | + "execution_count": 1, |
| 6 | + "id": "ac5db869-9bb9-4c1e-827a-b32e57bc63ea", |
| 7 | + "metadata": {}, |
| 8 | + "outputs": [], |
| 9 | + "source": [ |
| 10 | + "from pydbsp.zset import ZSet, ZSetAddition\n", |
| 11 | + "from pydbsp.stream import step_until_fixpoint\n", |
| 12 | + "from typing import Tuple, List\n", |
| 13 | + "\n", |
| 14 | + "from pydbsp.algorithms.datalog import (\n", |
| 15 | + " EDB,\n", |
| 16 | + " Fact,\n", |
| 17 | + " Program,\n", |
| 18 | + " Rule,\n", |
| 19 | + ")\n", |
| 20 | + "\n", |
| 21 | + "Edge = Tuple[int, int]\n", |
| 22 | + "GraphZSet = ZSet[Edge]\n", |
| 23 | + "\n", |
| 24 | + "def create_test_zset_graph(n: int) -> GraphZSet:\n", |
| 25 | + " return ZSet({(k, k + 1): 1 for k in range(n)})\n", |
| 26 | + "\n", |
| 27 | + "def create_test_edb(n: int) -> EDB:\n", |
| 28 | + " test_graph = create_test_zset_graph(n)\n", |
| 29 | + " group: ZSetAddition[Fact] = ZSetAddition()\n", |
| 30 | + "\n", |
| 31 | + " test_edb = group.identity()\n", |
| 32 | + " for k, v in test_graph.items():\n", |
| 33 | + " test_edb.inner[(\"E\", (k[0], k[1]))] = v\n", |
| 34 | + "\n", |
| 35 | + " return test_edb\n", |
| 36 | + "\n", |
| 37 | + "def from_facts_into_zset(facts: List[Tuple[Fact, int]]) -> EDB:\n", |
| 38 | + " edb: EDB = ZSetAddition().identity()\n", |
| 39 | + " for fact, weight in facts:\n", |
| 40 | + " edb.inner[fact] = weight\n", |
| 41 | + "\n", |
| 42 | + " return edb\n", |
| 43 | + "\n", |
| 44 | + "\n", |
| 45 | + "def from_rule_into_zset(rule: Rule, weight: int) -> Program:\n", |
| 46 | + " program: Program = ZSetAddition().identity()\n", |
| 47 | + " program.inner[rule] = weight\n", |
| 48 | + "\n", |
| 49 | + " return program\n", |
| 50 | + "\n" |
| 51 | + ] |
| 52 | + }, |
| 53 | + { |
| 54 | + "cell_type": "code", |
| 55 | + "execution_count": 2, |
| 56 | + "id": "e884e314-3f2f-40fc-bb6c-cfd6a5a2d4e4", |
| 57 | + "metadata": {}, |
| 58 | + "outputs": [ |
| 59 | + { |
| 60 | + "name": "stdout", |
| 61 | + "output_type": "stream", |
| 62 | + "text": [ |
| 63 | + "[(0, 0), (1, 0), (1, 1), (1, 2), (1, 3), (1, 4), (2, 0), (2, 1), (2, 2), (3, 0), (3, 1), (3, 2), (3, 3), (4, 0), (4, 1), (4, 2), (4, 3), (4, 4)]\n" |
| 64 | + ] |
| 65 | + } |
| 66 | + ], |
| 67 | + "source": [ |
| 68 | + "from pydbsp.algorithms.datalog import IncrementalDatalogWithNegation, Variable\n", |
| 69 | + "from pydbsp.stream import Stream, StreamHandle\n", |
| 70 | + "from pydbsp.stream.operators.linear import stream_elimination\n", |
| 71 | + "\n", |
| 72 | + "edb_group: ZSetAddition[Fact] = ZSetAddition()\n", |
| 73 | + "edb_stream = Stream(edb_group)\n", |
| 74 | + "edb_stream_h = StreamHandle(lambda: edb_stream)\n", |
| 75 | + "\n", |
| 76 | + "program_group: ZSetAddition[Rule]= ZSetAddition()\n", |
| 77 | + "program_stream = Stream(program_group)\n", |
| 78 | + "program_stream_h = StreamHandle(lambda: program_stream)\n", |
| 79 | + "\n", |
| 80 | + "seed: Rule = ((\"T\", (Variable(\"X\"), Variable(\"Y\"))), (\"E\", (Variable(\"X\"), Variable(\"Y\"))))\n", |
| 81 | + "transitivity: Rule = (\n", |
| 82 | + " (\"T\", (Variable(\"X\"), Variable(\"Z\"))),\n", |
| 83 | + " (\"T\", (Variable(\"X\"), Variable(\"Y\"))),\n", |
| 84 | + " (\"T\", (Variable(\"Y\"), Variable(\"Z\"))),\n", |
| 85 | + ")\n", |
| 86 | + "node_left: Rule = (\n", |
| 87 | + " (\"Node\", (Variable(\"X\"),)),\n", |
| 88 | + " (\"E\", (Variable(\"X\"), Variable(\"Y\")))\n", |
| 89 | + ")\n", |
| 90 | + "node_right: Rule = (\n", |
| 91 | + " (\"Node\", (Variable(\"Y\"),)),\n", |
| 92 | + " (\"E\", (Variable(\"X\"), Variable(\"Y\")))\n", |
| 93 | + ")\n", |
| 94 | + "complement_transitivity: Rule = (\n", |
| 95 | + " (\"not_T\", (Variable(\"X\"), Variable(\"Y\"))),\n", |
| 96 | + " (\"Node\", (Variable(\"X\"),)),\n", |
| 97 | + " (\"Node\", (Variable(\"Y\"),)),\n", |
| 98 | + " (\"!T\", (Variable(\"X\"), Variable(\"Y\")))\n", |
| 99 | + ")\n", |
| 100 | + "\n", |
| 101 | + "reasoner = IncrementalDatalogWithNegation(edb_stream_h, program_stream_h, None)\n", |
| 102 | + "edb_stream.send(from_facts_into_zset([((\"E\", (2, 3)), 1), ((\"E\", (0, 2)), 1), ((\"E\", (0, 1)), 1), ((\"R\", (1, 2)), 1) , ((\"E\", (3, 4)), 1)]))\n", |
| 103 | + "program_stream.send(from_rule_into_zset(transitivity, 1))\n", |
| 104 | + "program_stream.send(from_rule_into_zset(node_left, 1))\n", |
| 105 | + "program_stream.send(from_rule_into_zset(node_right, 1))\n", |
| 106 | + "program_stream.send(from_rule_into_zset(complement_transitivity, 1))\n", |
| 107 | + "program_stream.send(from_rule_into_zset(seed, 1))\n", |
| 108 | + "\n", |
| 109 | + "step_until_fixpoint(reasoner)\n", |
| 110 | + "fixedpoint = [ k[1] for k, _v in stream_elimination(reasoner.output()).items() if k[0] == \"not_T\" ]\n", |
| 111 | + "\n", |
| 112 | + "print(sorted(fixedpoint))" |
| 113 | + ] |
| 114 | + }, |
| 115 | + { |
| 116 | + "cell_type": "code", |
| 117 | + "execution_count": 3, |
| 118 | + "id": "ccb1ee9c-a34b-4ffd-84c0-ee19c6f55f77", |
| 119 | + "metadata": {}, |
| 120 | + "outputs": [ |
| 121 | + { |
| 122 | + "name": "stdout", |
| 123 | + "output_type": "stream", |
| 124 | + "text": [ |
| 125 | + "[(0, 1, 2, 3), (1, 2, 3, 0), (2, 3, 0, 1), (3, 0, 1, 2)]\n" |
| 126 | + ] |
| 127 | + } |
| 128 | + ], |
| 129 | + "source": [ |
| 130 | + "edb_group: ZSetAddition[Fact] = ZSetAddition()\n", |
| 131 | + "edb_stream = Stream(edb_group)\n", |
| 132 | + "edb_stream_h = StreamHandle(lambda: edb_stream)\n", |
| 133 | + "\n", |
| 134 | + "program_group: ZSetAddition[Rule]= ZSetAddition()\n", |
| 135 | + "program_stream = Stream(program_group)\n", |
| 136 | + "program_stream_h = StreamHandle(lambda: program_stream)\n", |
| 137 | + "\n", |
| 138 | + "cycle_4_not_overlapping_cycle_3: Rule = (\n", |
| 139 | + " (\"cycle_4_not_overlapping_cycle_3\", (\n", |
| 140 | + " Variable(\"A\"), \n", |
| 141 | + " Variable(\"B\"), \n", |
| 142 | + " Variable(\"C\"), \n", |
| 143 | + " Variable(\"D\")\n", |
| 144 | + " )),\n", |
| 145 | + " (\"E\", (Variable(\"A\"), Variable(\"B\"))),\n", |
| 146 | + " (\"E\", (Variable(\"B\"), Variable(\"C\"))),\n", |
| 147 | + " (\"!E\", (Variable(\"A\"), Variable(\"C\"))),\n", |
| 148 | + " (\"E\", (Variable(\"C\"), Variable(\"D\"))),\n", |
| 149 | + " (\"!E\", (Variable(\"B\"), Variable(\"D\"))),\n", |
| 150 | + " (\"!E\", (Variable(\"C\"), Variable(\"A\"))),\n", |
| 151 | + " (\"E\", (Variable(\"D\"), Variable(\"A\"))),\n", |
| 152 | + " (\"!E\", (Variable(\"D\"), Variable(\"B\")))\n", |
| 153 | + ")\n", |
| 154 | + "\n", |
| 155 | + "reasoner = IncrementalDatalogWithNegation(edb_stream_h, program_stream_h, None)\n", |
| 156 | + "edb_stream.send(from_facts_into_zset([\n", |
| 157 | + " #// First 4-cycle: 0 -> 1 -> 2 -> 3 -> 0\n", |
| 158 | + " ((\"E\", (0, 1)), 1),\n", |
| 159 | + " ((\"E\", (1, 2)), 1),\n", |
| 160 | + " ((\"E\", (2, 3)), 1),\n", |
| 161 | + " ((\"E\", (3, 0)), 1),\n", |
| 162 | + " \n", |
| 163 | + " #// Second pattern (4-cycle with 3-cycle): 4 -> 5 -> 6 -> 7 -> 4 and 6 -> 4\n", |
| 164 | + " ((\"E\", (4, 5)), 1),\n", |
| 165 | + " ((\"E\", (5, 6)), 1),\n", |
| 166 | + " ((\"E\", (6, 7)), 1),\n", |
| 167 | + " ((\"E\", (7, 4)), 1),\n", |
| 168 | + " ((\"E\", (6, 4)), 1) #// Creates the 3-cycle\n", |
| 169 | + "]))\n", |
| 170 | + "program_stream.send(from_rule_into_zset(cycle_4_not_overlapping_cycle_3, 1))\n", |
| 171 | + "\n", |
| 172 | + "step_until_fixpoint(reasoner)\n", |
| 173 | + "fixedpoint = [ k[1] for k, v in stream_elimination(reasoner.output()).items() if k[0] == \"cycle_4_not_overlapping_cycle_3\" ]\n", |
| 174 | + "\n", |
| 175 | + "print(sorted(fixedpoint))" |
| 176 | + ] |
| 177 | + } |
| 178 | + ], |
| 179 | + "metadata": { |
| 180 | + "kernelspec": { |
| 181 | + "display_name": "Python 3 (ipykernel)", |
| 182 | + "language": "python", |
| 183 | + "name": "python3" |
| 184 | + }, |
| 185 | + "language_info": { |
| 186 | + "codemirror_mode": { |
| 187 | + "name": "ipython", |
| 188 | + "version": 3 |
| 189 | + }, |
| 190 | + "file_extension": ".py", |
| 191 | + "mimetype": "text/x-python", |
| 192 | + "name": "python", |
| 193 | + "nbconvert_exporter": "python", |
| 194 | + "pygments_lexer": "ipython3", |
| 195 | + "version": "3.12.4" |
| 196 | + } |
| 197 | + }, |
| 198 | + "nbformat": 4, |
| 199 | + "nbformat_minor": 5 |
| 200 | +} |
0 commit comments