Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies to latest version #309

Merged
merged 1 commit into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Creature.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { yellow } from "https://deno.land/std@0.218.0/fmt/colors.ts";
import { format } from "https://deno.land/std@0.218.0/fmt/duration.ts";
import { emptyDirSync } from "https://deno.land/std@0.218.0/fs/empty_dir.ts";
import { yellow } from "https://deno.land/std@0.219.1/fmt/colors.ts";
import { format } from "https://deno.land/std@0.219.1/fmt/duration.ts";
import { emptyDirSync } from "https://deno.land/std@0.219.1/fs/empty_dir.ts";
import {
addTag,
getTag,
Expand Down
2 changes: 1 addition & 1 deletion src/architecture/CreatureUtils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { generate as generateV5 } from "https://deno.land/std@0.218.0/uuid/v5.ts";
import { generate as generateV5 } from "https://deno.land/std@0.219.1/uuid/v5.ts";
import { Creature } from "../Creature.ts";

export class CreatureUtil {
Expand Down
2 changes: 1 addition & 1 deletion src/architecture/ElitismUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
red,
white,
yellow,
} from "https://deno.land/std@0.218.0/fmt/colors.ts";
} from "https://deno.land/std@0.219.1/fmt/colors.ts";
import { getTag } from "https://deno.land/x/[email protected]/mod.ts";
import { Creature } from "../Creature.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/architecture/FineTune.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { blue, bold, cyan } from "https://deno.land/std@0.218.0/fmt/colors.ts";
import { blue, bold, cyan } from "https://deno.land/std@0.219.1/fmt/colors.ts";
import { addTag, getTag } from "https://deno.land/x/[email protected]/mod.ts";
import { Creature } from "../Creature.ts";
import { CreatureUtil } from "./CreatureUtils.ts";
Expand Down
6 changes: 3 additions & 3 deletions src/architecture/Neat.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { blue } from "https://deno.land/std@0.218.0/fmt/colors.ts";
import { format } from "https://deno.land/std@0.218.0/fmt/duration.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
import { blue } from "https://deno.land/std@0.219.1/fmt/colors.ts";
import { format } from "https://deno.land/std@0.219.1/fmt/duration.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import {
addTag,
getTag,
Expand Down
6 changes: 3 additions & 3 deletions src/architecture/Training.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { blue, yellow } from "https://deno.land/std@0.218.0/fmt/colors.ts";
import { format } from "https://deno.land/std@0.218.0/fmt/duration.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
import { blue, yellow } from "https://deno.land/std@0.219.1/fmt/colors.ts";
import { format } from "https://deno.land/std@0.219.1/fmt/duration.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { Costs } from "../Costs.ts";
import { Creature } from "../Creature.ts";
import { TrainOptions } from "../config/TrainOptions.ts";
Expand Down
4 changes: 2 additions & 2 deletions test/ActivationNames.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Activations } from "../src/methods/activations/Activations.ts";
import { assertNotEquals } from "https://deno.land/std@0.218.0/assert/assert_not_equals.ts";
import { assert } from "https://deno.land/std@0.218.0/assert/assert.ts";
import { assertNotEquals } from "https://deno.land/std@0.219.1/assert/assert_not_equals.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/assert.ts";

Deno.test("ActivationNames", () => {
Activations.NAMES.forEach((name) => {
Expand Down
2 changes: 1 addition & 1 deletion test/CRISPR.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assert,
assertEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";

import { CRISPR } from "../src/reconstruct/CRISPR.ts";
import { Creature } from "../src/Creature.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Clipped.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
6 changes: 3 additions & 3 deletions test/Compact/Cascade.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/assert_almost_equals.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/assert_almost_equals.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { fail } from "https://deno.land/std@0.218.0/assert/fail.ts";
import { fail } from "https://deno.land/std@0.219.1/assert/fail.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
import { compactUnused } from "../../src/compact/CompactUnused.ts";

Expand Down
4 changes: 2 additions & 2 deletions test/Compact/Compact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {
assert,
assertAlmostEquals,
fail,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { Creature } from "../../src/Creature.ts";
import { CreatureInternal } from "../../src/architecture/CreatureInterfaces.ts";

Expand Down
4 changes: 2 additions & 2 deletions test/Compact/CompactConstant.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
assertAlmostEquals,
fail,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
Expand Down
4 changes: 2 additions & 2 deletions test/Compact/CompactKeepOrder.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
assertAlmostEquals,
fail,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
Expand Down
6 changes: 3 additions & 3 deletions test/Compact/FixIF.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/assert_almost_equals.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/assert_almost_equals.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { fail } from "https://deno.land/std@0.218.0/assert/fail.ts";
import { fail } from "https://deno.land/std@0.219.1/assert/fail.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
import { compactUnused } from "../../src/compact/CompactUnused.ts";

Expand Down
6 changes: 3 additions & 3 deletions test/Compact/UnusedClipped.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/assert_almost_equals.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/assert_almost_equals.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { fail } from "https://deno.land/std@0.218.0/assert/fail.ts";
import { fail } from "https://deno.land/std@0.219.1/assert/fail.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
import { compactUnused } from "../../src/compact/CompactUnused.ts";

Expand Down
4 changes: 2 additions & 2 deletions test/Constants/AddNeuron.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { assertEquals } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.219.1/assert/mod.ts";

function makeCreature() {
const json: CreatureExport = {
Expand Down
2 changes: 1 addition & 1 deletion test/Constants/Constant.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assert,
assertAlmostEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../../src/Creature.ts";

import { CreatureInternal } from "../../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Correct.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Costs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Costs } from "../src/Costs.ts";
import { MSELimit } from "../src/costs/MSELimit.ts";
import { TwelveSteps } from "../src/costs/TwelveSteps.ts";
Expand Down
4 changes: 2 additions & 2 deletions test/Creature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {
assertAlmostEquals,
assertEquals,
assertNotEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { addTag, getTag } from "https://deno.land/x/[email protected]/mod.ts";
import { Creature } from "../src/Creature.ts";
import { DataRecordInterface } from "../src/architecture/DataSet.ts";
Expand Down
4 changes: 2 additions & 2 deletions test/CreatureStore.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { emptyDirSync } from "https://deno.land/std@0.218.0/fs/empty_dir.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { emptyDirSync } from "https://deno.land/std@0.219.1/fs/empty_dir.ts";
import { NeatOptions } from "../src/config/NeatOptions.ts";
import { Creature } from "../src/Creature.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/CreatureUUID.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
assert,
assertEquals,
assertNotEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";
import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
import { CreatureUtil } from "../src/architecture/CreatureUtils.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/ELU.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Elitism.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";
import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
import { makeElitists } from "../src/architecture/ElitismUtils.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Evolve.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Creature } from "../src/Creature.ts";
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Mutation } from "../src/methods/mutation.ts";

((globalThis as unknown) as { DEBUG: boolean }).DEBUG = true;
Expand Down
2 changes: 1 addition & 1 deletion test/ExperimentStore.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { addTag } from "https://deno.land/x/[email protected]/mod.ts";
import { Creature } from "../src/Creature.ts";
import { CreatureUtil } from "../src/architecture/CreatureUtils.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/FineTune.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { addTag } from "https://deno.land/x/[email protected]/mod.ts";
import { Creature } from "../src/Creature.ts";
import { fineTuneImprovement } from "../src/architecture/FineTune.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/FineTuneUUID.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
assertAlmostEquals,
assertEquals,
fail,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";
import { fineTuneImprovement } from "../src/architecture/FineTune.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/Fix.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.219.1/assert/mod.ts";

import { Creature } from "../src/Creature.ts";
import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Hypot.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/IfElse.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assert,
assertAlmostEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/InConnections.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/InFocus.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";
((globalThis as unknown) as { DEBUG: boolean }).DEBUG = true;

Expand Down
2 changes: 1 addition & 1 deletion test/LeakyReLU.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Maximum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Mean.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Minimum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Mish.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/NeuronUUID.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
import {
assert,
assertEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

((globalThis as unknown) as { DEBUG: boolean }).DEBUG = true;
Expand Down
2 changes: 1 addition & 1 deletion test/Offspring/Bread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
assert,
assertEquals,
assertFalse,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../../src/Creature.ts";
import { CreatureInternal } from "../../src/architecture/CreatureInterfaces.ts";
import { Neat } from "../../src/architecture/Neat.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Offspring/KeepOrder.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { Offspring } from "../../src/architecture/Offspring.ts";
import { ensureDirSync } from "https://deno.land/std@0.217.0/fs/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/mod.ts";

function makeMum() {
const json: CreatureExport = {
Expand Down
4 changes: 2 additions & 2 deletions test/Offspring/KeepSynapses.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { fail } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { fail } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { CreatureExport } from "../../mod.ts";
import { Creature } from "../../src/Creature.ts";
import { Offspring } from "../../src/architecture/Offspring.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/mod.ts";

function makeMum() {
const json: CreatureExport = {
Expand Down
2 changes: 1 addition & 1 deletion test/Projection.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../src/Creature.ts";

import { CreatureInternal } from "../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Propagate/AccumulateBias.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/assert_almost_equals.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/assert_almost_equals.ts";
import { CreatureExport } from "../../mod.ts";
import {
adjustedBias,
Expand Down
2 changes: 1 addition & 1 deletion test/Propagate/AccumulateWeight.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/assert_almost_equals.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/assert_almost_equals.ts";
import { accumulateWeight } from "../../src/architecture/BackPropagation.ts";
import { SynapseState } from "../../src/architecture/CreatureState.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
Expand Down
4 changes: 2 additions & 2 deletions test/Propagate/Complex.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { assertAlmostEquals } from "https://deno.land/std@0.218.0/assert/mod.ts";
import { assertAlmostEquals } from "https://deno.land/std@0.219.1/assert/mod.ts";
import { Creature } from "../../src/Creature.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
import {
ensureDirSync,
existsSync,
} from "https://deno.land/std@0.218.0/fs/mod.ts";
} from "https://deno.land/std@0.219.1/fs/mod.ts";

((globalThis as unknown) as { DEBUG: boolean }).DEBUG = true;

Expand Down
4 changes: 2 additions & 2 deletions test/Propagate/Constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertAlmostEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.218.0/fs/ensure_dir.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import { ensureDirSync } from "https://deno.land/std@0.219.1/fs/ensure_dir.ts";
import { Creature } from "../../src/Creature.ts";
import { BackPropagationConfig } from "../../src/architecture/BackPropagation.ts";
import { CreatureExport } from "../../src/architecture/CreatureInterfaces.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/Propagate/Generation.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
assertAlmostEquals,
} from "https://deno.land/std@0.218.0/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
import {
adjustedBias,
adjustedWeight,
Expand Down
Loading