testilo 41.5.14 → 41.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
- package/procs/score/tic50.js +9880 -0
- package/procs/score/tsp50.js +420 -0
package/README.md
CHANGED
|
@@ -809,16 +809,16 @@ The `report` argument is a scored report. The `summary` constant is an object. T
|
|
|
809
809
|
A user can invoke `summarize()` in either of these two ways:
|
|
810
810
|
|
|
811
811
|
```javaScript
|
|
812
|
-
node call summarize divisions
|
|
813
|
-
node call summarize divisions 2411
|
|
812
|
+
node call summarize "company divisions"
|
|
813
|
+
node call summarize "company divisions" 2411
|
|
814
814
|
```
|
|
815
815
|
|
|
816
816
|
When a user invokes `summarize` in this example, the `call` module:
|
|
817
817
|
- gets all the reports in the `scored` subdirectory of the `REPORTDIR` directory, or (if the third argument is present) all those whose file names begin with `2411`.
|
|
818
818
|
- creates a summary of each report.
|
|
819
819
|
- combines the summaries into an array.
|
|
820
|
-
- creates a _summary report_, an object containing three properties: `id` (an ID), `what` (a description, such as `'divisions'`), and `summaries` (the array of summaries).
|
|
821
|
-
- writes the summary report in JSON format to the `summarized` subdirectory of the `REPORTDIR` directory
|
|
820
|
+
- creates a _summary report_, an object containing three properties: `id` (an ID), `what` (a description, such as `'company divisions'`), and `summaries` (the array of summaries).
|
|
821
|
+
- writes the summary report in JSON format to the `summarized` subdirectory of the `REPORTDIR` directory.
|
|
822
822
|
|
|
823
823
|
### Comparison
|
|
824
824
|
|