Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmalecha/coq-gc
Coq plugin to force garbage collection
https://github.com/gmalecha/coq-gc
Last synced: about 2 months ago
JSON representation
Coq plugin to force garbage collection
- Host: GitHub
- URL: https://github.com/gmalecha/coq-gc
- Owner: gmalecha
- License: bsd-3-clause
- Created: 2013-10-18T21:32:17.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-21T14:40:43.000Z (about 11 years ago)
- Last Synced: 2023-04-30T20:32:50.177Z (over 1 year ago)
- Language: Coq
- Size: 199 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
coq-gc
======Coq plugin to force garbage collection.
Use
---```
Require Import Gc.Gc Full.
```Installation
------------From the command line, run
```
make install
```You may need root privileges in order to install the files to the system.
Why?
----I've run into two instances where I wished that I could manually garbage collect Coq.
1) Running a bad tactic that eats up a lot of memory.
2) At the end of a very large proof that is Qed'ed.This plugin attempts to address these problems by providing a vernacular command that will force a major garbage collection (for the technical definition of 'major' associated with OCaml's garbage collector).