Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563500 views
1
#!/usr/bin/env bash
2
set -ex
3
4
GAP="$GAPROOT/bin/gap.sh --quitonbreak -q"
5
6
mkdir $COVDIR
7
$GAP --cover $COVDIR/test.coverage tst/testall.g
8
9