Skip to content

Commit e414042

Browse files
authored
Merge pull request #69 from elsoroka/final-joss-updates
adding citation and paper badge!
2 parents 0056c32 + 24339c5 commit e414042

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed

CITATION.cff

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
cff-version: "1.2.0"
2+
authors:
3+
- family-names: Soroka
4+
given-names: Emiko
5+
orcid: "https://orcid.org/0009-0001-2710-469X"
6+
- family-names: Kochenderfer
7+
given-names: Mykel J.
8+
orcid: "https://orcid.org/0000-0002-7238-9663"
9+
- family-names: Lall
10+
given-names: Sanjay
11+
orcid: "https://orcid.org/0000-0002-1783-5309"
12+
contact:
13+
- family-names: Soroka
14+
given-names: Emiko
15+
orcid: "https://orcid.org/0009-0001-2710-469X"
16+
- family-names: Kochenderfer
17+
given-names: Mykel J.
18+
orcid: "https://orcid.org/0000-0002-7238-9663"
19+
- family-names: Lall
20+
given-names: Sanjay
21+
orcid: "https://orcid.org/0000-0002-1783-5309"
22+
doi: 10.6084/m9.figshare.26768461
23+
message: If you use this software, please cite our article in the
24+
Journal of Open Source Software.
25+
preferred-citation:
26+
authors:
27+
- family-names: Soroka
28+
given-names: Emiko
29+
orcid: "https://orcid.org/0009-0001-2710-469X"
30+
- family-names: Kochenderfer
31+
given-names: Mykel J.
32+
orcid: "https://orcid.org/0000-0002-7238-9663"
33+
- family-names: Lall
34+
given-names: Sanjay
35+
orcid: "https://orcid.org/0000-0002-1783-5309"
36+
date-published: 2024-08-20
37+
doi: 10.21105/joss.06757
38+
issn: 2475-9066
39+
issue: 100
40+
journal: Journal of Open Source Software
41+
publisher:
42+
name: Open Journals
43+
start: 6757
44+
title: "Satisfiability.jl: Satisfiability Modulo Theories in Julia"
45+
type: article
46+
url: "https://joss.theoj.org/papers/10.21105/joss.06757"
47+
volume: 9
48+
title: "Satisfiability.jl: Satisfiability Modulo Theories in Julia"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Satisfiability.jl](https://elsoroka.github.io/Satisfiability.jl)
22

3-
[![build status](https://github.com/elsoroka/Satisfiability.jl/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/elsoroka/Satisfiability.jl/actions/workflows/CI.yml?query=branch%3Amain) [![docs](https://github.com/elsoroka/Satisfiability.jl/actions/workflows/docs.yml/badge.svg)](https://elsoroka.github.io/Satisfiability.jl/) [![codecov](https://codecov.io/gh/elsoroka/Satisfiability.jl/branch/main/graph/badge.svg?token=84BIREQL46)](https://codecov.io/gh/elsoroka/Satisfiability.jl)
3+
[![build status](https://github.com/elsoroka/Satisfiability.jl/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/elsoroka/Satisfiability.jl/actions/workflows/CI.yml?query=branch%3Amain) [![docs](https://github.com/elsoroka/Satisfiability.jl/actions/workflows/docs.yml/badge.svg)](https://elsoroka.github.io/Satisfiability.jl/) [![codecov](https://codecov.io/gh/elsoroka/Satisfiability.jl/branch/main/graph/badge.svg?token=84BIREQL46)](https://codecov.io/gh/elsoroka/Satisfiability.jl) [![DOI](https://joss.theoj.org/papers/10.21105/joss.06757/status.svg)](https://doi.org/10.21105/joss.06757)
44

55
Satisfiability.jl is a package for representing satisfiability modulo theories (SMT) problems in Julia. This package provides a simple front-end interface to common SMT solvers, including full support for vector-valued and matrix-valued expressions. Currently, the theories of propositional logic, uninterpreted functions, Integers, Reals and fixed-size BitVectors are supported. We will eventually add support for all [SMT-LIB standard theories](http://smtlib.cs.uiowa.edu/theories.shtml).
66

@@ -89,4 +89,4 @@ println(status) # if status is UNSAT we proved it.
8989
Release 0.1.2 is out! You can install it with the command `using Pkg; Pkg.add("Satisfiability")`. Please help make the Julia ecosystem better for everyone by opening a GitHub issue if you have feedback or find a bug.
9090

9191
## Contributing
92-
Contribution guidelines are [here](https://elsoroka.github.io/Satisfiability.jl/dev/contributing/). If you're not sure how to get started, take a look at the [Roadmap](https://github.com/elsoroka/Satisfiability.jl/issues/46) and anything tagged [help wanted](https://github.com/elsoroka/Satisfiability.jl/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22).
92+
Contribution guidelines are [here](https://elsoroka.github.io/Satisfiability.jl/dev/contributing/). If you're not sure how to get started, take a look at the [Roadmap](https://github.com/elsoroka/Satisfiability.jl/issues/46) and anything tagged [help wanted](https://github.com/elsoroka/Satisfiability.jl/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22).

0 commit comments

Comments
 (0)