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

563626 views
1
<Verb>ChildCreate():: Void --> Child process</Verb>
2
<Verb>ChildProcess("computer.address.ie"):: String --> Child process</Verb>
3
<Verb>ChildProcess(["-m", "100000M", "-T"]):: List --> Child process</Verb>
4
<Verb>ChildProcess("computer.ac.wales", ["-m", "100000M", "-T"]):: String, List --> Child process</Verb>
5
6
<P/> Starts a GAP session as a child process and returns a stream
7
to the child process. If no argument is given then the child process is
8
created on the local machine; otherwise the argument should be:
9
(1) the address of a remote computer for which ssh has been configured to
10
require no password from the user; (2) or a list of GAP command line options;
11
(3) or the address of a computer followed by a list of command line options.
12
13
14
15
16