-
# RFC: Embedding Datalog in a functional language
This RFC sketches a Datalog dialect implemented as syntactic sugar on top of a general-purpose functional language (e.g., Rust). It strives to com…
-
Currently, the [example data analysis code](https://github.com/AguaClara/team_resources/blob/master/Example%20Code/Data%20Analysis.md) for reading ProCoDA files only addresses data files whose names a…
-
Over in #170, I simplified things by not including placeholders for Mentat value types I wasn't going to support at the start: `:db.type/instant`, `:db.type/uuid`, and `:db.type/uri`. (We might consi…
-
Dear Eric,
This looks extremely cool. I'm keen to get into Rust for data stuff, and I like Datomic, but dislike JVM kludge, so I found your project.
Would you be openminded to enable users to co…
-
#include
SdFat sd;
File file;
char fileName[] = "datalog.csv";
#define LOGFILE "datalog.csv"
file = sd.open(fileName, FILE_WRITE);
It gives me the …
-
We can extract tags from packages using [RAKE](https://hackage.haskell.org/package/rake-0.0.1).
This will require tuning, filtering and more automated filtering. The datalog can be useful.
This re…
-
My partitioning transformation introduces the distribution function `slotPartition` below.
```
p2a(i, no, slot, i, num, p, t') :- FilledHoles(no, slot, l, t), id(i), ballot(num, l, t), acceptors(a…
-
can the boot (or reset) button be used to initiate closing of the current file being logged and incrementing the file number for the next reset.
thanks!
-
Hi,
Consider the following datalog file
**datalog 1**
```
.decl Jkc(U:float, V:float, W:float, X:float)
.input Jkc
.decl klG(U:float, V:float) inline
klG(oTZ^s,Vds-2) :- Jkc(Vds,s,oTZ,Vds),…
-
I'm trying to write some analysis with datalog based on ddisasm, but it's not convenient to reuse the existing results when implementing a pass. Should I write some datalog program and include it from…