@@ -20,38 +20,34 @@ Welcome to LODA developer version. More information at https://loda-lang.org/
2020
2121Usage: loda <command> <options>
2222
23- Core Commands:
24- evaluate <program> Evaluate a program to an integer sequence (see -t,-b,-s)
25- export <program> Export a program print result (see -o,-t)
26- optimize <program> Optimize a program and print it
27- minimize <program> Minimize a program and print it (see -t)
23+ Commands:
24+ eval <program> Evaluate an integer sequence program (see -t,-b,-s)
25+ check <program> Verify correctness of an integer sequence program (see -b)
26+ mine Mine programs for integer sequences (see -i,-p,-P,-H)
27+ submit <file> [id] Submit an integer sequence program to the central repository
28+ export <program> Export a program and print the result (see -o,-t)
29+ optimize <program> Optimize a program and print the result
30+ minimize <program> Minimize a program and print the result (see -t)
2831 profile <program> Measure program evaluation time (see -t)
29- fold <program> <id> Fold a subprogram given by ID into a seq operation
30- unfold <program> Unfold the first seq operation of a program
31-
32- OEIS Commands:
33- mine Mine programs for OEIS sequences (see -i,-p,-P,-H)
34- check <program> Check a program for an OEIS sequence (see -b)
35- mutate <program> Mutate a program and mine for OEIS sequences
36- submit <file> [id] Submit a program for an OEIS sequence
37-
38- Admin Commands:
32+ fold <program> <id> Fold a subprogram given by ID into a seq-operation
33+ unfold <program> Unfold the first seq-operation of a program
34+ mutate <program> Mutate a program to mine for integer sequences
3935 setup Run interactive setup to configure LODA
40- update Update OEIS and program data (no version upgrade)
36+ update Update integer sequence and program data
4137 upgrade Check for and install the latest LODA version
4238
4339Targets:
4440 <file> Path to a LODA file (file extension: *.asm)
45- <id> ID of an OEIS integer sequence (example: A000045)
41+ <id> ID of an integer sequence (example: A000045)
4642 <program> Either an <file> or an <id>
4743
4844Options:
4945 -t <number> Number of sequence terms (default: 8)
5046 -b Print result in the OEIS b-file format
5147 -o <string> Export format (formula,loda,pari,range)
5248 -d Export with dependencies to other programs
53- -s Evaluate program to number of execution steps
54- -c <number> Maximum number of interpreter cycles (no limit: -1)
49+ -s Evaluate program and return number of execution steps
50+ -c <number> Maximum number of execution steps (no limit: -1)
5551 -m <number> Maximum number of used memory cells (no limit: -1)
5652 -z <number> Maximum evaluation time in seconds (no limit: -1)
5753 -l <string> Log level (values: debug,info,warn,error,alert)
0 commit comments