-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcodemeta.json
40 lines (40 loc) · 1.29 KB
/
codemeta.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"license": "https://spdx.org/licenses/MIT",
"codeRepository": "https://github.com/crillab/gophersat",
"dateCreated": "2017-01-20",
"datePublished": "2017-07-27",
"name": "Gophersat",
"version": "1.4",
"description": "Gophersat is a SAT and pseudo-boolean solver written in go. It can also solve MAXSAT problems, and pseudo-boolean decision and optimization problems. It can be used as a library in a go program, or as a standalone solver.\n",
"applicationCategory": "Artificial Intelligence",
"funder": {
"@type": "Organization",
"name": "CRIL CNRS & Univ. Artois"
},
"keywords": [
"AI",
"artificial intelligence",
"SAT",
"MAXSAT",
"pseudo boolean",
"constraints"
],
"programmingLanguage": [
"go"
],
"author": [
{
"@type": "Person",
"@id": "https://orcid.org/0000-0003-3696-8657",
"givenName": "Fabien",
"familyName": "Delorme",
"email": "[email protected]",
"affiliation": {
"@type": "Organization",
"name": "CRIL CNRS & Univ. Artois"
}
}
]
}