Added medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-02-18 21:37:22 -05:00
parent a51e20fbc7
commit a22bb998cb
14 changed files with 78 additions and 68 deletions

View file

@ -1,10 +1,11 @@
---
title: "Z3 Constraint solving"
date: 2021-06-18T00:53:20-04:00
date: 2021-06-18 04:53:20
draft: false
math: true
tags: []
medium_enabled: true
medium_post_id: 9e4ced42d47
tags: []
title: Z3 Constraint solving
---
I've been looking for an easy to use constraint solver for a while and recently I've landed on using the python bindings for the SMT solver Z3.
@ -43,5 +44,4 @@ s.check()
m = s.model()
x_val = m.eval(x)
y_val = m.eval(y)
```
```