{"id":33179813,"url":"https://github.com/minicp/minicp","last_synced_at":"2026-01-10T21:01:36.202Z","repository":{"id":50440058,"uuid":"491649064","full_name":"minicp/minicp","owner":"minicp","description":"minicp","archived":false,"fork":false,"pushed_at":"2025-02-03T10:00:07.000Z","size":4638,"stargazers_count":21,"open_issues_count":1,"forks_count":19,"subscribers_count":3,"default_branch":"mooc","last_synced_at":"2025-02-03T11:19:52.360Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/minicp.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":"2022-05-12T19:52:16.000Z","updated_at":"2025-02-03T10:00:23.000Z","dependencies_parsed_at":"2023-02-16T22:15:37.451Z","dependency_job_id":"78552e9a-ff76-4cf2-a562-ecd19c4f3c2a","html_url":"https://github.com/minicp/minicp","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/minicp/minicp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minicp%2Fminicp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minicp%2Fminicp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minicp%2Fminicp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minicp%2Fminicp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minicp","download_url":"https://codeload.github.com/minicp/minicp/tar.gz/refs/heads/mooc","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minicp%2Fminicp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28258096,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-10T02:00:06.867Z","response_time":57,"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":"2025-11-16T03:00:36.842Z","updated_at":"2026-01-10T21:01:36.196Z","avatar_url":"https://github.com/minicp.png","language":"Java","funding_links":[],"categories":["人工智能"],"sub_categories":[],"readme":"![build](https://github.com/minicp/minicp/actions/workflows/publish.yml/badge.svg)\n\n\n# README #\n\n* MiniCP technical documentation, exercises, etc \ncan be found at \u003chttp://minicp.org\u003e.\n* MiniCP is a Java project built with Maven (\u003chttps://maven.apache.org\u003e).\n\n\n\n\nSystem Requirements\n-------------------\n\n* JDK:\n 1.8 or above (this is to execute Maven; it still allows you to build against 1.3\n and prior JDKs).\n* Memory:\n No minimum requirement.\n* Disk:\n Approximately 10MB is required for the Maven installation itself. Additional disk space will be used for your local Maven repository. The size\n of your local repository will vary depending on usage, but expect at least 500MB.\n* Operating system: \n    * Windows: Windows 2000 or above.\n    * Unix-based operating systems (Linux, Solaris, and macOS) and others: No minimum requirement.\n\nInstalling Maven\n----------------\n\n1. Unpack the archive where you would like to store the binaries, e.g.:\n\n    - Unix-based operating systems (Linux, Solaris, and macOS):\n      ```\n      tar zxvf apache-maven-3.x.y.tar.gz \n      ```\n    - Windows:\n      ```\n      unzip apache-maven-3.x.y.zip\n      ```\n\n    A directory called `apache-maven-3.x.y` will be created.\n\n2. Add the bin directory to your PATH, e.g.:\n\n    - Unix-based operating systems (Linux, Solaris, and macOS):\n      ```\n      export PATH=/usr/local/apache-maven-3.x.y/bin:$PATH\n      ```\n    - Windows:\n      ```\n      set PATH=\"v:\\program files\\apache-maven-3.x.y\\bin\";%PATH%\n      ```\n\n3. Make sure `JAVA_HOME` is set to the location of your JDK.\n\n4. Run `mvn --version` to verify that it is correctly installed.\n\n\nFor the complete documentation, see\n\u003chttps://maven.apache.org/download.html#Installation\u003e.\n\n\nCommands for executing a model and running the test suite\n---------------------------------------------------------\n\n```\n cd minicp/\n mvn compile                                              # compile the project\n mvn exec:java -Dexec.mainClass=\"minicp.examples.NQueens\" # execute the n-queens model\n mvn test                                                 # run the test suite\n```\n\nUsing the IntelliJ IDEA editor\n--------------------------------------------------\n\nWe recommend IntelliJ IDEA (\u003chttps://www.jetbrains.com/idea/download\u003e).\n\nDo \u003e `File | Open Project (Alt + F + O)` and specify the path to `pom.xml`\nas explained at\n\u003chttps://blog.jetbrains.com/idea/2008/03/opening-maven-projects-is-easy-as-pie\u003e.\n\nContent\n-------------\n\n```\n./src/main/java/                   # the implementation of MiniCP\n./src/main/java/minicp/examples/   # model examples\n./src/test/java/                   # the test suite\n./data/                            # input instances\n```\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminicp%2Fminicp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminicp%2Fminicp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminicp%2Fminicp/lists"}