Skip to content

Commit

Permalink
optimize by increasing the UI progress update step;
Browse files Browse the repository at this point in the history
From 10**6 to 10**7.
  • Loading branch information
shlomif committed Sep 9, 2024
1 parent b716496 commit bb3fcff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fc-solve/site/wml/src/ts/find-fc-deal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class Freecell_Deal_Finder {

public run(abs_start, abs_end_param, update_cb) {
const that = this;
const CHUNK = bigInt(1000000);
const CHUNK = bigInt(10000000);
that.CHUNKM = CHUNK.add(bigInt.minusOne);
const start = bigInt(abs_start);
const abs_end = bigInt(abs_end_param);
Expand Down

0 comments on commit bb3fcff

Please sign in to comment.