diff --git a/docs/apps/apps/classSchedule/js/main.js b/docs/apps/apps/classSchedule/js/main.js index 988a44f2..272e2591 100644 --- a/docs/apps/apps/classSchedule/js/main.js +++ b/docs/apps/apps/classSchedule/js/main.js @@ -10,7 +10,6 @@ document.addEventListener('DOMContentLoaded', function () { showSchedule(generation[0], input); Array.from({ length: 500 }, () => { generation = geneticAlgorithm.getNextGenerationAndAdjustSettings(generation, settings); - console.log(generation[0]); showSchedule(generation[0], input); }); }); diff --git a/docs/apps/apps/classSchedule/main.ts b/docs/apps/apps/classSchedule/main.ts index bcc6f3f8..d8e7d0ce 100644 --- a/docs/apps/apps/classSchedule/main.ts +++ b/docs/apps/apps/classSchedule/main.ts @@ -1,6 +1,6 @@ -import * as types from './types'; -import * as scheduler from './scheduler'; -import * as geneticAlgorithm from './geneticAlgorithm'; +import * as types from './types.js'; +import * as scheduler from './scheduler.js'; +import * as geneticAlgorithm from './geneticAlgorithm.js'; document.addEventListener('DOMContentLoaded', function() { const input = scheduler.getData(); diff --git a/src/apps/apps/classSchedule/js/main.js b/src/apps/apps/classSchedule/js/main.js index 988a44f2..272e2591 100644 --- a/src/apps/apps/classSchedule/js/main.js +++ b/src/apps/apps/classSchedule/js/main.js @@ -10,7 +10,6 @@ document.addEventListener('DOMContentLoaded', function () { showSchedule(generation[0], input); Array.from({ length: 500 }, () => { generation = geneticAlgorithm.getNextGenerationAndAdjustSettings(generation, settings); - console.log(generation[0]); showSchedule(generation[0], input); }); }); diff --git a/src/apps/apps/classSchedule/main.ts b/src/apps/apps/classSchedule/main.ts index bcc6f3f8..d8e7d0ce 100644 --- a/src/apps/apps/classSchedule/main.ts +++ b/src/apps/apps/classSchedule/main.ts @@ -1,6 +1,6 @@ -import * as types from './types'; -import * as scheduler from './scheduler'; -import * as geneticAlgorithm from './geneticAlgorithm'; +import * as types from './types.js'; +import * as scheduler from './scheduler.js'; +import * as geneticAlgorithm from './geneticAlgorithm.js'; document.addEventListener('DOMContentLoaded', function() { const input = scheduler.getData();