kairn-cli 2.16.0 → 2.16.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/dist/cli.js CHANGED
@@ -9425,12 +9425,6 @@ async function evolve(workspacePath, tasks, kairnConfig, evolveConfig, onProgres
9425
9425
  evolveConfig.proposerModel,
9426
9426
  principalProjectCtx
9427
9427
  );
9428
- if (principalProposal.mutations.length > evolveConfig.maxMutationsPerIteration) {
9429
- principalProposal = {
9430
- ...principalProposal,
9431
- mutations: principalProposal.mutations.slice(0, evolveConfig.maxMutationsPerIteration)
9432
- };
9433
- }
9434
9428
  const principalIterNum = history.length;
9435
9429
  const principalIterDir = path31.join(workspacePath, "iterations", principalIterNum.toString());
9436
9430
  const mutResult = await applyMutations(baselineHarnessPath, principalIterDir, principalProposal.mutations);