{"id":20047741,"url":"https://github.com/aig-hagen/algorithms_for_acceptable_arguments","last_synced_at":"2026-04-17T04:03:25.304Z","repository":{"id":227547537,"uuid":"771555973","full_name":"aig-hagen/algorithms_for_acceptable_arguments","owner":"aig-hagen","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-23T09:41:03.000Z","size":9303,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T10:27:35.013Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aig-hagen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-13T14:13:15.000Z","updated_at":"2025-03-23T09:41:10.000Z","dependencies_parsed_at":"2024-05-21T10:09:29.750Z","dependency_job_id":"39bb244a-aa32-41e0-912b-f725db2b874b","html_url":"https://github.com/aig-hagen/algorithms_for_acceptable_arguments","commit_stats":null,"previous_names":["aig-hagen/algorithms_for_acceptable_arguments"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/aig-hagen/algorithms_for_acceptable_arguments","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aig-hagen%2Falgorithms_for_acceptable_arguments","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aig-hagen%2Falgorithms_for_acceptable_arguments/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aig-hagen%2Falgorithms_for_acceptable_arguments/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aig-hagen%2Falgorithms_for_acceptable_arguments/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aig-hagen","download_url":"https://codeload.github.com/aig-hagen/algorithms_for_acceptable_arguments/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aig-hagen%2Falgorithms_for_acceptable_arguments/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31914461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T11:37:46.687Z","updated_at":"2026-04-17T04:03:25.286Z","avatar_url":"https://github.com/aig-hagen.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# algorithms_for_acceptable_arguments v1.0 (03-2024)\n\nImplements several SAT-based algorithms for enumerating credulously/skeptically accepted arguments for abstract argumentation frameworks.\n\nSupports the following problems: [`EC-CO`,`EC-PR`,`EC-ST`,`ES-PR`,`ES-ST`]\n\nSupports TGF and i23 format for abstract argumentation frameworks.\n\n\n## Installation\n\n### Building SAT Solvers\nThis solver supports multiple integrated SAT Solvers, namely [CaDiCal](https://github.com/arminbiere/cadical) (version 1.9.5), [Glucose](https://github.com/audemard/glucose) (version 4.1) and [CryptoMiniSat](https://github.com/msoos/cryptominisat) (version 5.11.21).\nFor the SEEM approach an integrated MaxSAT Solver [CGSS2](https://bitbucket.org/coreo-group/cgss2/src/master/).\nThe relevant source files are included and the solvers can easily be built as follows\n\n#### CaDiCal\n```\n  make cadical\n```\n\n#### Glucose\nTo use Glucose `g++-11` needs to be installed\n```\n  make glucose\n```\n\n### CryptoMiniSat\nCryptoMiniSat requires `cmake`\n```\n  sudo apt-get install build-essential cmake\n```\nInstall Boost libraries and other prerequisites\n```\nsudo apt-get install zlib1g-dev libboost-program-options-dev libsqlite3-dev\n```\n\nBuilding and installing CryptoMiniSat\n```\n  make cmsat\n```\n\n\n### CGSS2\nInstall prerequisites\n```\n  apt-get install libgmp3-dev\n  apt-get install libboost-iostreams-dev\n```\nBuilding CGSS2\n```\n  make cgss2\n```\n\n## Compile and Build Solver\nTo compile and build all possible combinations of solvers and algorithms use\n```\n  make full\n```\n\nTo compile and build solver for all algorithms use\n```\n    make all\n```\n\nAlternatively, build only for a specific algorithm via\n```\n    make \u003ciaq|eee|see|seem|fudge\u003e\n```\nor \n```\n    make ALGORITHM=\u003ciaq|eee|see|seem|fudge\u003e\n```\n\nThe SAT solver to be used can be specified as follows\n```\n  make \u003ciaq|eee|see|seem|fudge\u003e SOLVER=\u003ccadical|glucose|cryptominisat|cgss2\u003e\n```\n\n### Example\nTo build only the solver based on the IAQ algorithm using the CaDiCal SAT Solver\n```\n  make iaq SOLVER=cadical\n```\nOr, to build the solver for all algorithms using Glucose\n```\n  make all SOLVER=glucose\n```\n\n## Command-line usage\n\n```\n./solver.sh \u003calgorithm\u003e -p \u003ctask\u003e -f \u003cfile\u003e -fo \u003cformat\u003e\n  \n  \u003calgorithm\u003e the algorithm for computation, one of: [iaq,eee,see,seem,fudge]\n  \u003ctask\u003e      computational problem\n  \u003cfile\u003e      input argumentation framework\n  \u003cformat\u003e    file format for input AF\n\nOptions:\n  --help      Displays this help message.\n  --version   Prints version and author information.\n  --formats   Prints available file formats.\n  --problems  Prints available computational problems.\n```\n\nExample usage:\n```\n  ./solver.sh iaq -p EC-PR -fo tgf -f \u003cfile in TGF format\u003e\n```\n\nAlternatively, you can also directly call the binary for each algorithm, e.g.\n```\n  ./build/bin/\u003calgorithm\u003e/solver -p EC-PR -fo tgf -f \u003cfile in TGF format\u003e\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faig-hagen%2Falgorithms_for_acceptable_arguments","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faig-hagen%2Falgorithms_for_acceptable_arguments","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faig-hagen%2Falgorithms_for_acceptable_arguments/lists"}