Skip to content

Commit 215f941

Browse files
chore: format and up docs packages
1 parent ccde5df commit 215f941

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ ReservoirComputing = "7c2d2b1e-3dd4-11ea-355a-8f6a8116e294"
1212
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1313

1414
[compat]
15-
CellularAutomata = "0.0.2"
15+
CellularAutomata = "0.0.6"
1616
DifferentialEquations = "7.16.1"
1717
Documenter = "1"
1818
DocumenterCitations = "1"
1919
OrdinaryDiffEq = "6"
2020
Plots = "1"
2121
PredefinedDynamicalSystems = "1"
22-
ReservoirComputing = "0.11.0"
22+
ReservoirComputing = "0.11.4"
2323
StatsBase = "0.34.4"

ext/RCCellularAutomataExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function encoding(rm::RandomMaps, input_vector, tot_encoded_vector)
8686
input_vector,
8787
new_tot_enc_vec[((i - 1) * rm.expansion_size + 1):(i * rm.expansion_size)],
8888
rm.maps[i,
89-
:])
89+
:])
9090
end
9191

9292
return new_tot_enc_vec

src/inits/esn_inits.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,7 @@ function digital_chaotic_adjacency(rng::AbstractRNG, bit_precision::Integer;
944944
end
945945
adjacency_matrix[matrix_order, 1] = 1
946946
for row_index in 1:matrix_order, column_index in 1:matrix_order
947+
947948
if row_index != column_index && rand(rng) < extra_edge_probability
948949
adjacency_matrix[row_index, column_index] = 1
949950
end

0 commit comments

Comments
 (0)