-
## Problem Statement
Consider a rule `R(e1,h3,[a2, x],2) :- R(a2,h3,[x],1),l(a2,e1)`, when treating it as a program, the corresponding SQL is `select t1.c1 as c0, t0.c1 as c1, ARRAY[t0.c0, t0.c2[1]…
-
This issue serves to track ideas and goals related to integrating instruction semantics.
Basic example:
```asm
EA_LEA: lea eax, [edi + esi * 2 + 0xf00]
EA_MOV: mov ecx, dword ptr [eax]
```
…
-
I work on a stream implementation of datalog. I use idx to keep sets of datoms inmemory and query sub-sets of sets efficiently. These sets are joint with each other to comput a result set for a query.…
-
Another, somewhat larger effort, is a SQL DSL ontop of Onyx. Again, something like HoneySQL. We could write a library that reads a data structure representing SQL and output an Onyx job. This is a wel…
-
This is to start a conversation. I am hoping to nerd snipe someone who has the relevant knowledge into doing something I don't know how to do.
I think it would be very helpful to have a Formal Mode…
-
- Azure Data Studio Version:
Version: 1.36.1 (system setup)
Commit: e56e1d931bbb110fe8f24751423c4e184bb8f22d
Date: 2022-04-21T21:25:10.399Z
VS Code: 1.59.0
Electron: 13.6.6
Chrome: 9…
-
I knew N3 is used as a rule language but I only had a look at stuff like SWRL, RIF & Datalog so far. So I thought can't be that hard and tried to see how I would map some stuff I do in CONSTRUCTS.
…
-
First release of [sensors-connectivity](https://github.com/airalab/sensors-connectivity) repo with COM-port data reading example of source code. Testing with air pollution sensor NOVA PM sds011.
-
Hi, sorry that I'm informing about issue instead to provide a solution, I just start to use this library in the java project which builds datalog queries from SQL dialect so Clojure is something very …
-
Consider the following program:
```
.decl num(x: number)
.decl test(x: number, y: number)
num(0).
num(1).
test(x, y) :-
num(x),
num(y),
x band y = 1.
.output test
```
When I us…