My First Logic Program

Posted by Vanessasaurus on March 14, 2021 · 8 mins read

This is a crosspost from VanessaSaurus, dinosaurs, programming, and parsnips. See the original post here.

Today I decided I wanted to write my first logic program. What the heck is a logic program, or (more appropriately) Answer Set Programming (ASP)? Let’s dive in!

What is Answer Set Programming?

When you use a package manager, how does it find a solution? If you are familiar with spack, you’ll know that there is a concretization step (see spack solve) and we somehow find a solution to a bunch of version constraints. One of the (newly added) solvers is called clingo. It’s a grounder and solver for logic programs, and is going to empower us to do Answer Set Programming!

Why should I care?

What is Clingo?

The University of Potsdam in Germany has a collection of tools for Answer Set Programming. The set of tools is referred to as “Potassco” (Potsdam Answer Set Solving Collection) and Clingo is one of these tools. There is a great reference that can walk you through all the details, and there are even online teaching resources that you can use to jump in and learn.

What does it do?

From a very high level standpoint, you as a developer can express combinatorial problems as logic programs (files with extension “lp”) that define statements or facts (atoms) and then a set of rules. Once we have these statements and rules, we can ask Clingo to find a stable model. While the details are out of scope for this post, I recommend reading this guide to learn more or checking out the getting started pages on the site.

Ok, so why should I care?

This isn’t just learning a new language. It’s learning a new way of thinking. I think that it’s important for research software engineers to add these concepts to their toolbelt for several reasons.

1. New Models for Problem Solving

The first is that we have become so accustomed to writing functions and carrying around logic in data structures that we may have forgotten that there are entirely different ways to model problems. For example, instead of trying to hard code some logic and navigate a data structure, we could flatten the entire thing into statements (atoms and rules), and ask clingo (or more generally, a solver) for a solution.

2. Generalizability

The second reason is that this kind of approach allows for generalizability. What I mean is that we might have similar problems, perhaps represented in different programming languages, and they might be generalized into logic statements and then used across languages. I say this because I think logic can be viewed as a basis for thinking, and for algorithms. It’s (I think) one of the lowest levels we can use to model a problem.

2. Reduction

I would say using a solver like Clingo is taking a reductionist approach because we are forced to break down problems into the smallest components. As I alluded to earlier, I think having this new way of thinking can be hugely useful for a software engineer. Being a good software engineer doesn’t always mean knowing every fact, or being an expert in every domain, but rather being creative when it comes to solving problems. The more ways that you can think about a problem, arguably the more creative you can be.

My First Program!

Let’s write a logic program! For my first shot (knowing almost nothing but getting the gist of what they look like) I absolutely had to ask a very compelling question:

Am I a dinosaur?

I decided to use the clingo container provided by the autamus registry, which is an effort to create a registry of spack package containers hosted on GitHub packages. I want to give a shoutout to alecbcs who has championed this idea and let me help along the way! We have this clingo container that is absolutely perfect for the quick project that I wanted to do today to write this script. Let’s first pull the Clingo container so we have an interactive environment to work in.

$ docker run --rm -it ghcr.io/autamus/clingo:latest bash

Clingo will be installed via spack, and already on our path! It’s installed in what is called a spack view, which I suspect is modeled after a database view, if you are interested. Do we have clingo in the container?

# which clingo
/opt/view/bin/clingo

Yes! Now let’s write a small logic program, which we will put in a file called dinosaur.lp. It will help us determine if a living thing is a dinosaur. It will start with a set of statements (truths about what we know) and then end with a rule that defines what it means to be a dinosaur based on these statements. Keep in mind that this is a hugely simple example, and clingo has much more functionality than this.


% These are blanket facts, statements that each of these is living
% I think these are called atoms
living(vanessa).
living(fernando).
living(maria).

% This tells use size of arms for each living thing
armsize(vanessa, "small").
armsize(fernando, "large").
armsize(fernando, "small").

% A boolean to say we can roar!
canroar(vanessa).

% An entity is a dinosaur if they are living, have tiny arms, and can roar.
dinosaur(Entity) :- living(Entity), armsize(Entity, "small"), canroar(Entity).

To look for a solution, we can run clingo (note that I broke the output below apart into separate lines for easier readability):

# clingo dinosaur.lp 
clingo version 5.5.0
Reading from dinosaur.lp
Solving...
Answer: 1
canroar(vanessa) armsize(vanessa,"small") 
                 armsize(fernando,"large")
                 armsize(fernando,"small")
                 living(vanessa)
                 living(fernando)
                 living(maria)
                 dinosaur(vanessa)
SATISFIABLE

Models       : 1
Calls        : 1
Time         : 0.003s (Solving: 0.00s 1st Model: 0.00s Unsat: 0.00s)
CPU Time     : 0.001s

See the last entry in the list? Clingo has told us that vanessa is a dinosaur, so I must be a dinosaur! I can’t explain why but writing this (and having it work) gave me immense joy. It’s also Pi day (Happy Pi Day!) If you are interested, I recommend the pdf I linked previously, and also checking out how the solver for spack generally works. That’s all I got!