config.js 201 字节
Newer Older
1 2 3 4
const stepLimit = 1e6; // TODO: limit number of traces

const CATEGORY_SCRATCH_PAPER = 'scratch-paper';
const ALGORITHM_NEW = 'new';
J
Jason Park 已提交
5 6 7

export {
  stepLimit,
8 9
  CATEGORY_SCRATCH_PAPER,
  ALGORITHM_NEW,
J
Jason Park 已提交
10
};