mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-21 22:08:31 +00:00
fix: give more time for larger graphs to settle on
This commit is contained in:
parent
13442d42f1
commit
b0c3bd1b2d
@ -513,7 +513,7 @@ export const GraphClustering = forwardRef<
|
|||||||
} else if (complexity < 500) {
|
} else if (complexity < 500) {
|
||||||
durationSeconds = 4.0;
|
durationSeconds = 4.0;
|
||||||
} else {
|
} else {
|
||||||
durationSeconds = Math.min(8, 5 + (complexity - 500) * 0.006);
|
durationSeconds = Math.min(20, 5 + (complexity - 500) * 0.006);
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user