Skip to content

quentin/aoc22-datalog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code 2022 in Datalog

AoC22 using Souffle datalog.

Following last year Advent of Code 2021 in Datalog!

New Year 2023 Advent of Code 2023 in Datalog.

How to run?

Puzzles are organized by day; answer to part 1 of day 1 is in day01/day01a.dl, answer to part 2 is in day01b.dl. The datalog files have .dl extension. The input files have .facts extension. The .facts files are produced from the original input file of the puzzle.

Interpreter mode

The quickest way to run a datalog program is to execute Souffle in interpreter mode. The interpreter mode may use N threads with option souffle -j N.

cd day01
# run
souffle --no-preprocessor -D- -F. day01a.dl
# or run with 4 threads
souffle --no-preprocessor -D- -F. -j 4 day01b.dl

Compiled mode

For long programs, or programs with large input, Souffle can generate c++ code.

cd day06

# compile, run on 8 threads and drop the executable
souffle --no-preprocessor -D- -F. -j 8 -c day06a

# compile and keep the executable
souffle --no-preprocessor -D- -F. -o day06a day06a.dl
# run on 4 threads
./day06a -j 4

What is going on?

By default only the answer relation is printed out and provides the answer to the puzzle.

You may want to reveal the content of any of the intermediate relation by adding the appropriate .output directive in the datalog code.

For instance add the line .output calories_in_inventory_range() in day01/day01a.dl so that the calories_in_inventory_range relation gets printed on the standard output.