@eagleoutice/flowr 1.3.14 → 1.4.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.
Files changed (218) hide show
  1. package/abstract-interpretation/domain.d.ts +27 -0
  2. package/abstract-interpretation/domain.js +146 -0
  3. package/abstract-interpretation/handler/binop/binop.d.ts +16 -0
  4. package/abstract-interpretation/handler/binop/binop.js +40 -0
  5. package/abstract-interpretation/handler/binop/operators.d.ts +2 -0
  6. package/abstract-interpretation/handler/binop/operators.js +42 -0
  7. package/abstract-interpretation/handler/handler.d.ts +6 -0
  8. package/abstract-interpretation/handler/handler.js +3 -0
  9. package/abstract-interpretation/processor.d.ts +10 -0
  10. package/abstract-interpretation/processor.js +78 -0
  11. package/benchmark/slicer.d.ts +6 -5
  12. package/benchmark/slicer.js +2 -0
  13. package/benchmark/stats/print.d.ts +1 -1
  14. package/benchmark/stats/stats.d.ts +4 -4
  15. package/benchmark/stats/stats.js +1 -1
  16. package/cli/common/features.d.ts +1 -1
  17. package/cli/common/options.d.ts +1 -1
  18. package/cli/common/script.d.ts +1 -1
  19. package/cli/common/scripts-info.d.ts +2 -2
  20. package/cli/repl/commands/cfg.d.ts +1 -1
  21. package/cli/repl/commands/cfg.js +1 -1
  22. package/cli/repl/commands/commands.d.ts +1 -1
  23. package/cli/repl/commands/dataflow.d.ts +1 -1
  24. package/cli/repl/commands/execute.d.ts +2 -2
  25. package/cli/repl/commands/main.d.ts +2 -2
  26. package/cli/repl/commands/normalize.d.ts +1 -1
  27. package/cli/repl/commands/parse.d.ts +1 -1
  28. package/cli/repl/commands/quit.d.ts +1 -1
  29. package/cli/repl/commands/version.d.ts +1 -1
  30. package/cli/repl/core.d.ts +1 -1
  31. package/cli/repl/execute.d.ts +1 -1
  32. package/cli/repl/server/connection.d.ts +2 -2
  33. package/cli/repl/server/connection.js +3 -2
  34. package/cli/repl/server/messages/analysis.d.ts +3 -3
  35. package/cli/repl/server/messages/analysis.js +12 -32
  36. package/cli/repl/server/messages/error.d.ts +1 -1
  37. package/cli/repl/server/messages/hello.d.ts +2 -2
  38. package/cli/repl/server/messages/messages.d.ts +5 -5
  39. package/cli/repl/server/messages/repl.d.ts +1 -1
  40. package/cli/repl/server/messages/slice.d.ts +3 -3
  41. package/cli/repl/server/net.d.ts +16 -0
  42. package/cli/repl/server/net.js +40 -1
  43. package/cli/repl/server/send.d.ts +2 -2
  44. package/cli/repl/server/server.d.ts +2 -2
  45. package/cli/repl/server/validate.d.ts +3 -3
  46. package/cli/statistics-helper-app.js +2 -2
  47. package/core/input.d.ts +6 -6
  48. package/core/output.d.ts +3 -2
  49. package/core/print/dataflow-printer.d.ts +3 -3
  50. package/core/print/normalize-printer.d.ts +2 -2
  51. package/core/print/parse-printer.d.ts +2 -2
  52. package/core/print/print.d.ts +1 -1
  53. package/core/print/slice-diff-ansi.d.ts +1 -1
  54. package/core/slicer.d.ts +5 -4
  55. package/core/slicer.js +6 -2
  56. package/core/steps.d.ts +22 -4
  57. package/core/steps.js +10 -2
  58. package/dataflow/environments/append.d.ts +1 -1
  59. package/dataflow/environments/environment.d.ts +4 -4
  60. package/dataflow/environments/overwrite.d.ts +1 -1
  61. package/dataflow/environments/register.d.ts +2 -2
  62. package/dataflow/environments/resolve-by-name.d.ts +2 -2
  63. package/dataflow/environments/scoping.d.ts +1 -1
  64. package/dataflow/extractor.d.ts +4 -4
  65. package/dataflow/graph/diff.d.ts +3 -3
  66. package/dataflow/graph/graph.d.ts +8 -7
  67. package/dataflow/graph/quads.d.ts +2 -2
  68. package/dataflow/graph/vertex.d.ts +5 -5
  69. package/dataflow/internal/info.d.ts +2 -2
  70. package/dataflow/internal/linker.d.ts +3 -3
  71. package/dataflow/internal/process/access.d.ts +3 -3
  72. package/dataflow/internal/process/expression-list.d.ts +3 -3
  73. package/dataflow/internal/process/expression-list.js +0 -4
  74. package/dataflow/internal/process/functions/argument.d.ts +4 -4
  75. package/dataflow/internal/process/functions/exit-points.d.ts +1 -1
  76. package/dataflow/internal/process/functions/function-call.d.ts +3 -3
  77. package/dataflow/internal/process/functions/function-definition.d.ts +3 -3
  78. package/dataflow/internal/process/functions/parameter.d.ts +3 -3
  79. package/dataflow/internal/process/if-then-else.d.ts +3 -3
  80. package/dataflow/internal/process/loops/for-loop.d.ts +3 -3
  81. package/dataflow/internal/process/loops/repeat-loop.d.ts +3 -3
  82. package/dataflow/internal/process/loops/while-loop.d.ts +3 -3
  83. package/dataflow/internal/process/operators/assignment.d.ts +3 -3
  84. package/dataflow/internal/process/operators/non-assignment-binary-op.d.ts +3 -3
  85. package/dataflow/internal/process/operators/pipe.d.ts +3 -3
  86. package/dataflow/internal/process/operators/unary-op.d.ts +3 -3
  87. package/dataflow/internal/process/symbol.d.ts +3 -3
  88. package/dataflow/internal/process/uninteresting-leaf.d.ts +2 -2
  89. package/dataflow/processor.d.ts +3 -3
  90. package/flowr.d.ts +3 -2
  91. package/flowr.js +5 -3
  92. package/package.json +11 -2
  93. package/r-bridge/lang-4.x/ast/model/collect.d.ts +2 -2
  94. package/r-bridge/lang-4.x/ast/model/model.d.ts +6 -6
  95. package/r-bridge/lang-4.x/ast/model/nodes/info/index.d.ts +2 -2
  96. package/r-bridge/lang-4.x/ast/model/nodes/info/r-delimiter.d.ts +3 -3
  97. package/r-bridge/lang-4.x/ast/model/nodes/r-access.d.ts +3 -3
  98. package/r-bridge/lang-4.x/ast/model/nodes/r-argument.d.ts +3 -3
  99. package/r-bridge/lang-4.x/ast/model/nodes/r-binary-op.d.ts +3 -3
  100. package/r-bridge/lang-4.x/ast/model/nodes/r-break.d.ts +2 -2
  101. package/r-bridge/lang-4.x/ast/model/nodes/r-comment.d.ts +2 -2
  102. package/r-bridge/lang-4.x/ast/model/nodes/r-expression-list.d.ts +2 -2
  103. package/r-bridge/lang-4.x/ast/model/nodes/r-for-loop.d.ts +4 -4
  104. package/r-bridge/lang-4.x/ast/model/nodes/r-function-call.d.ts +4 -4
  105. package/r-bridge/lang-4.x/ast/model/nodes/r-function-definition.d.ts +4 -4
  106. package/r-bridge/lang-4.x/ast/model/nodes/r-if-then-else.d.ts +3 -3
  107. package/r-bridge/lang-4.x/ast/model/nodes/r-line-directive.d.ts +2 -2
  108. package/r-bridge/lang-4.x/ast/model/nodes/r-logical.d.ts +2 -2
  109. package/r-bridge/lang-4.x/ast/model/nodes/r-next.d.ts +2 -2
  110. package/r-bridge/lang-4.x/ast/model/nodes/r-number.d.ts +3 -3
  111. package/r-bridge/lang-4.x/ast/model/nodes/r-parameter.d.ts +3 -3
  112. package/r-bridge/lang-4.x/ast/model/nodes/r-pipe.d.ts +2 -2
  113. package/r-bridge/lang-4.x/ast/model/nodes/r-repeat-loop.d.ts +3 -3
  114. package/r-bridge/lang-4.x/ast/model/nodes/r-string.d.ts +3 -3
  115. package/r-bridge/lang-4.x/ast/model/nodes/r-symbol.d.ts +2 -2
  116. package/r-bridge/lang-4.x/ast/model/nodes/r-unary-op.d.ts +3 -3
  117. package/r-bridge/lang-4.x/ast/model/nodes/r-while-loop.d.ts +3 -3
  118. package/r-bridge/lang-4.x/ast/model/operators.d.ts +1 -1
  119. package/r-bridge/lang-4.x/ast/model/processing/decorate.d.ts +2 -2
  120. package/r-bridge/lang-4.x/ast/model/processing/fold.d.ts +3 -3
  121. package/r-bridge/lang-4.x/ast/model/processing/role.d.ts +1 -1
  122. package/r-bridge/lang-4.x/ast/model/processing/stateful-fold.d.ts +3 -3
  123. package/r-bridge/lang-4.x/ast/model/processing/visitor.d.ts +1 -1
  124. package/r-bridge/lang-4.x/ast/parser/xml/config.d.ts +2 -2
  125. package/r-bridge/lang-4.x/ast/parser/xml/data.d.ts +5 -5
  126. package/r-bridge/lang-4.x/ast/parser/xml/hooks.d.ts +5 -5
  127. package/r-bridge/lang-4.x/ast/parser/xml/input-format.d.ts +1 -1
  128. package/r-bridge/lang-4.x/ast/parser/xml/internal/access.d.ts +3 -3
  129. package/r-bridge/lang-4.x/ast/parser/xml/internal/control/if-then-else.d.ts +3 -3
  130. package/r-bridge/lang-4.x/ast/parser/xml/internal/control/if-then.d.ts +3 -3
  131. package/r-bridge/lang-4.x/ast/parser/xml/internal/expression/expression.d.ts +3 -3
  132. package/r-bridge/lang-4.x/ast/parser/xml/internal/functions/argument.d.ts +3 -3
  133. package/r-bridge/lang-4.x/ast/parser/xml/internal/functions/call.d.ts +3 -3
  134. package/r-bridge/lang-4.x/ast/parser/xml/internal/functions/definition.d.ts +3 -3
  135. package/r-bridge/lang-4.x/ast/parser/xml/internal/functions/parameter.d.ts +3 -3
  136. package/r-bridge/lang-4.x/ast/parser/xml/internal/loops/break.d.ts +3 -3
  137. package/r-bridge/lang-4.x/ast/parser/xml/internal/loops/for.d.ts +3 -3
  138. package/r-bridge/lang-4.x/ast/parser/xml/internal/loops/next.d.ts +3 -3
  139. package/r-bridge/lang-4.x/ast/parser/xml/internal/loops/repeat.d.ts +3 -3
  140. package/r-bridge/lang-4.x/ast/parser/xml/internal/loops/while.d.ts +3 -3
  141. package/r-bridge/lang-4.x/ast/parser/xml/internal/meta.d.ts +4 -4
  142. package/r-bridge/lang-4.x/ast/parser/xml/internal/operators/binary.d.ts +3 -3
  143. package/r-bridge/lang-4.x/ast/parser/xml/internal/operators/special.d.ts +1 -1
  144. package/r-bridge/lang-4.x/ast/parser/xml/internal/operators/unary.d.ts +3 -3
  145. package/r-bridge/lang-4.x/ast/parser/xml/internal/other/comment.d.ts +3 -3
  146. package/r-bridge/lang-4.x/ast/parser/xml/internal/other/line-directive.d.ts +3 -3
  147. package/r-bridge/lang-4.x/ast/parser/xml/internal/structure/elements.d.ts +4 -4
  148. package/r-bridge/lang-4.x/ast/parser/xml/internal/structure/root.d.ts +3 -3
  149. package/r-bridge/lang-4.x/ast/parser/xml/internal/structure/single-element.d.ts +4 -4
  150. package/r-bridge/lang-4.x/ast/parser/xml/internal/values/number.d.ts +4 -4
  151. package/r-bridge/lang-4.x/ast/parser/xml/internal/values/string.d.ts +3 -3
  152. package/r-bridge/lang-4.x/ast/parser/xml/internal/values/symbol.d.ts +3 -3
  153. package/r-bridge/lang-4.x/ast/parser/xml/internal/xml-to-json.d.ts +2 -2
  154. package/r-bridge/lang-4.x/ast/parser/xml/parser.d.ts +4 -4
  155. package/r-bridge/retriever.d.ts +2 -2
  156. package/r-bridge/shell-executor.d.ts +25 -0
  157. package/r-bridge/shell-executor.js +119 -0
  158. package/r-bridge/shell.d.ts +8 -5
  159. package/r-bridge/shell.js +6 -3
  160. package/reconstruct/reconstruct.d.ts +1 -1
  161. package/slicing/criterion/collect-all.d.ts +3 -3
  162. package/slicing/criterion/filters/all-variables.d.ts +1 -1
  163. package/slicing/criterion/parse.d.ts +1 -1
  164. package/slicing/static/static-slicer.d.ts +3 -3
  165. package/statistics/features/common-syntax-probability.d.ts +3 -2
  166. package/statistics/features/common-syntax-probability.js +0 -3
  167. package/statistics/features/feature.d.ts +6 -6
  168. package/statistics/features/post-processing.d.ts +2 -2
  169. package/statistics/features/supported/assignments/assignments.d.ts +2 -2
  170. package/statistics/features/supported/assignments/post-process.d.ts +2 -2
  171. package/statistics/features/supported/comments/comments.d.ts +2 -2
  172. package/statistics/features/supported/comments/post-process.d.ts +2 -2
  173. package/statistics/features/supported/control-flow/control-flow.d.ts +2 -2
  174. package/statistics/features/supported/control-flow/post-process.d.ts +2 -2
  175. package/statistics/features/supported/data-access/data-access.d.ts +3 -3
  176. package/statistics/features/supported/data-access/post-process.d.ts +2 -2
  177. package/statistics/features/supported/defined-functions/defined-functions.d.ts +4 -4
  178. package/statistics/features/supported/defined-functions/post-process.d.ts +2 -2
  179. package/statistics/features/supported/expression-list/expression-list.d.ts +2 -2
  180. package/statistics/features/supported/expression-list/post-process.d.ts +2 -2
  181. package/statistics/features/supported/loops/loops.d.ts +2 -2
  182. package/statistics/features/supported/loops/post-process.d.ts +2 -2
  183. package/statistics/features/supported/used-functions/post-process.d.ts +2 -2
  184. package/statistics/features/supported/used-functions/used-functions.d.ts +3 -3
  185. package/statistics/features/supported/used-packages/post-process.d.ts +2 -2
  186. package/statistics/features/supported/used-packages/used-packages.d.ts +2 -2
  187. package/statistics/features/supported/values/post-process.d.ts +2 -2
  188. package/statistics/features/supported/values/values.d.ts +2 -2
  189. package/statistics/features/supported/variables/post-process.d.ts +3 -3
  190. package/statistics/features/supported/variables/variables.d.ts +2 -2
  191. package/statistics/meta-statistics.d.ts +1 -1
  192. package/statistics/output/print-stats.d.ts +2 -2
  193. package/statistics/output/statistics-file.d.ts +1 -1
  194. package/statistics/statistics.d.ts +4 -4
  195. package/util/{cfg.d.ts → cfg/cfg.d.ts} +18 -6
  196. package/util/{cfg.js → cfg/cfg.js} +42 -37
  197. package/util/cfg/visitor.d.ts +14 -0
  198. package/util/cfg/visitor.js +64 -0
  199. package/util/diff.d.ts +1 -1
  200. package/util/files.d.ts +1 -1
  201. package/util/mermaid/ast.d.ts +1 -1
  202. package/util/mermaid/cfg.d.ts +2 -2
  203. package/util/mermaid/dfg.d.ts +3 -3
  204. package/util/objects.d.ts +1 -1
  205. package/util/quads.d.ts +2 -2
  206. package/util/summarizer/benchmark/data.d.ts +1 -1
  207. package/util/summarizer/benchmark/first-phase/process.d.ts +3 -3
  208. package/util/summarizer/benchmark/second-phase/graph.d.ts +1 -1
  209. package/util/summarizer/benchmark/second-phase/process.d.ts +1 -1
  210. package/util/summarizer/benchmark/summarizer.d.ts +3 -2
  211. package/util/summarizer/benchmark/summarizer.js +0 -4
  212. package/util/summarizer/statistics/post-process/clusterer.d.ts +2 -2
  213. package/util/summarizer/statistics/post-process/file-based-count.d.ts +1 -1
  214. package/util/summarizer/statistics/post-process/histogram.d.ts +2 -2
  215. package/util/summarizer/statistics/post-process/post-process-output.d.ts +2 -2
  216. package/util/summarizer/statistics/second-phase/process.d.ts +2 -2
  217. package/util/summarizer/statistics/summarizer.d.ts +3 -2
  218. package/util/summarizer/summarizer.d.ts +1 -1
package/util/diff.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * @module
6
6
  */
7
- import { MergeableRecord } from './objects';
7
+ import type { MergeableRecord } from './objects';
8
8
  /**
9
9
  * Unifies the shape of all difference reports.
10
10
  * They should have an array of comments on the potential differences/equality of
package/util/files.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="node" />
2
- import { RParseRequestFromFile } from '../r-bridge';
2
+ import type { RParseRequestFromFile } from '../r-bridge';
3
3
  /**
4
4
  * Represents a table, identified by a header and a list of rows.
5
5
  */
@@ -1,4 +1,4 @@
1
- import { RNodeWithParent } from '../../r-bridge';
1
+ import type { RNodeWithParent } from '../../r-bridge';
2
2
  export declare function normalizedAstToMermaid(ast: RNodeWithParent, prefix?: string): string;
3
3
  /**
4
4
  * Use mermaid to visualize the normalized AST.
@@ -1,5 +1,5 @@
1
- import { NormalizedAst } from '../../r-bridge';
2
- import { ControlFlowInformation } from '../cfg';
1
+ import type { NormalizedAst } from '../../r-bridge';
2
+ import type { ControlFlowInformation } from '../cfg/cfg';
3
3
  export declare function cfgToMermaid(cfg: ControlFlowInformation, normalizedAst: NormalizedAst, prefix?: string): string;
4
4
  /**
5
5
  * Use mermaid to visualize the normalized AST.
@@ -1,6 +1,6 @@
1
- import { NodeId } from '../../r-bridge';
2
- import { SourceRange } from '../range';
3
- import { DataflowGraph, DataflowMap } from '../../dataflow';
1
+ import type { NodeId } from '../../r-bridge';
2
+ import type { SourceRange } from '../range';
3
+ import type { DataflowGraph, DataflowMap } from '../../dataflow';
4
4
  export declare function formatRange(range: SourceRange | undefined): string;
5
5
  export declare function graphToMermaid(graph: DataflowGraph, dataflowIdMap: DataflowMap | undefined, prefix?: string | null, idPrefix?: string, includeEnvironments?: boolean, mark?: Set<NodeId>, rootGraph?: DataflowGraph): string;
6
6
  /**
package/util/objects.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { DeepPartial, DeepRequired } from 'ts-essentials';
1
+ import type { DeepPartial, DeepRequired } from 'ts-essentials';
2
2
  /**
3
3
  * checks if `item` is an object (it may be an array, ...)
4
4
  */
package/util/quads.d.ts CHANGED
@@ -7,8 +7,8 @@
7
7
  *
8
8
  * @module
9
9
  */
10
- import { MergeableRecord } from './objects';
11
- import { NodeId } from '../r-bridge';
10
+ import type { MergeableRecord } from './objects';
11
+ import type { NodeId } from '../r-bridge';
12
12
  type RecordForQuad = Record<string, unknown>;
13
13
  type DataForQuad = Record<string, unknown> | ArrayLike<unknown>;
14
14
  type ContextForQuad = string;
@@ -1,4 +1,4 @@
1
- import { CommonSlicerMeasurements, PerSliceMeasurements, SlicerStats, SlicerStatsDataflow, SlicerStatsInput } from '../../../benchmark';
1
+ import type { CommonSlicerMeasurements, PerSliceMeasurements, SlicerStats, SlicerStatsDataflow, SlicerStatsInput } from '../../../benchmark';
2
2
  export interface SummarizedMeasurement<T = number> {
3
3
  min: T;
4
4
  max: T;
@@ -1,6 +1,6 @@
1
- import { SummarizedMeasurement, SummarizedSlicerStats } from '../data';
2
- import { PerSliceStats, SlicerStats } from '../../../../benchmark';
3
- import { SlicingCriteria } from '../../../../slicing';
1
+ import type { SummarizedMeasurement, SummarizedSlicerStats } from '../data';
2
+ import type { PerSliceStats, SlicerStats } from '../../../../benchmark';
3
+ import type { SlicingCriteria } from '../../../../slicing';
4
4
  /**
5
5
  * Summarizes the given stats by calculating the min, max, median, mean, and the standard deviation for each measurement.
6
6
  * @see Slicer
@@ -1,2 +1,2 @@
1
- import { UltimateSlicerStats } from '../data';
1
+ import type { UltimateSlicerStats } from '../data';
2
2
  export declare function writeGraphOutput(ultimate: UltimateSlicerStats, outputGraphPath: string): void;
@@ -1,4 +1,4 @@
1
1
  /// <reference types="node" />
2
- import { SummarizedSlicerStats, UltimateSlicerStats } from '../data';
2
+ import type { SummarizedSlicerStats, UltimateSlicerStats } from '../data';
3
3
  export declare function summarizeAllSummarizedStats(stats: SummarizedSlicerStats[]): UltimateSlicerStats;
4
4
  export declare function processNextSummary(line: Buffer, allSummarized: SummarizedSlicerStats[]): void;
@@ -2,8 +2,9 @@
2
2
  * This module is tasked with processing the results of the benchmarking (see {@link SlicerStats}).
3
3
  * @module
4
4
  */
5
- import { CommonSummarizerConfiguration, Summarizer } from '../summarizer';
6
- import { UltimateSlicerStats } from './data';
5
+ import type { CommonSummarizerConfiguration } from '../summarizer';
6
+ import { Summarizer } from '../summarizer';
7
+ import type { UltimateSlicerStats } from './data';
7
8
  export interface BenchmarkSummarizerConfiguration extends CommonSummarizerConfiguration {
8
9
  /**
9
10
  * If given, produce graph data output (e.g. for the benchmark visualization) to the given path
@@ -4,10 +4,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.BenchmarkSummarizer = void 0;
7
- /**
8
- * This module is tasked with processing the results of the benchmarking (see {@link SlicerStats}).
9
- * @module
10
- */
11
7
  const summarizer_1 = require("../summarizer");
12
8
  const fs_1 = __importDefault(require("fs"));
13
9
  const input_1 = require("./first-phase/input");
@@ -1,6 +1,6 @@
1
1
  import { DefaultMap } from '../../../defaultmap';
2
- import { NodeId } from '../../../../r-bridge';
3
- import { MergeableRecord } from '../../../objects';
2
+ import type { NodeId } from '../../../../r-bridge';
3
+ import type { MergeableRecord } from '../../../objects';
4
4
  export type ContextsWithCount = DefaultMap<NodeId, number>;
5
5
  export type ClusterContextIdMap = DefaultMap<string | undefined, NodeId>;
6
6
  export type ClusterValueInfoMap = DefaultMap<string, ContextsWithCount>;
@@ -1,4 +1,4 @@
1
- import { ClusterReport } from './clusterer';
1
+ import type { ClusterReport } from './clusterer';
2
2
  export interface FileBasedTable {
3
3
  header: string[];
4
4
  rows: string[][];
@@ -1,5 +1,5 @@
1
- import { ClusterReport } from './clusterer';
2
- import { Table } from '../../../files';
1
+ import type { ClusterReport } from './clusterer';
2
+ import type { Table } from '../../../files';
3
3
  /**
4
4
  * A conventional histogram (e.g., created by {@link histogramFromNumbers}).
5
5
  * Can be converted to a {@link Table} by {@link histograms2table}.
@@ -1,5 +1,5 @@
1
- import { FeatureSelection } from '../../../../statistics';
2
- import { ClusterReport } from './clusterer';
1
+ import type { FeatureSelection } from '../../../../statistics';
2
+ import type { ClusterReport } from './clusterer';
3
3
  /**
4
4
  * Post process the collections in a given folder, reducing them in a memory preserving way.
5
5
  *
@@ -1,5 +1,5 @@
1
- import { CommonSummarizerConfiguration } from '../../summarizer';
2
- import { StatisticsSummarizerConfiguration } from '../summarizer';
1
+ import type { CommonSummarizerConfiguration } from '../../summarizer';
2
+ import type { StatisticsSummarizerConfiguration } from '../summarizer';
3
3
  /**
4
4
  * Post process the collections in a given folder, retrieving the final summaries.
5
5
  *
@@ -1,5 +1,6 @@
1
- import { CommonSummarizerConfiguration, Summarizer } from '../summarizer';
2
- import { FeatureSelection } from '../../../statistics';
1
+ import type { CommonSummarizerConfiguration } from '../summarizer';
2
+ import { Summarizer } from '../summarizer';
3
+ import type { FeatureSelection } from '../../../statistics';
3
4
  export interface StatisticsSummarizerConfiguration extends CommonSummarizerConfiguration {
4
5
  /**
5
6
  * The input path to read all zips from
@@ -1,4 +1,4 @@
1
- import { MergeableRecord } from '../objects';
1
+ import type { MergeableRecord } from '../objects';
2
2
  export declare const enum SummarizerType {
3
3
  Benchmark = "benchmark",
4
4
  Statistics = "statistics"