From 79f1789b40ea316ae9c3a55d6c8618e849e77bd1 Mon Sep 17 00:00:00 2001 From: Haris Orgn Date: Thu, 21 Dec 2023 15:30:50 +0200 Subject: [PATCH 1/2] rename test --- test/reinforcement_learning.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/reinforcement_learning.jl b/test/reinforcement_learning.jl index da265c06..fe347d17 100644 --- a/test/reinforcement_learning.jl +++ b/test/reinforcement_learning.jl @@ -6,7 +6,7 @@ using MetaGraphs using DataFrames using CSV -@testset "RFLearning test" begin +@testset "RL test" begin t_trial = 2 # ms time_block_dur = 0.01 # ms N_trials = 3 From b18d5adee71fe4bb901bf45f03f190118201bbdd Mon Sep 17 00:00:00 2001 From: Haris Orgn Date: Thu, 21 Dec 2023 15:31:27 +0200 Subject: [PATCH 2/2] =?UTF-8?q?use=20`=CF=81`=20as=20the=20competitor=20st?= =?UTF-8?q?ate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blox/connections.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blox/connections.jl b/src/blox/connections.jl index 4ea21b5c..e4f65aad 100644 --- a/src/blox/connections.jl +++ b/src/blox/connections.jl @@ -581,5 +581,5 @@ function connect_action_selection!(as::AbstractActionSelection, matr1::Matrisome sys1 = get_namespaced_sys(matr1) sys2 = get_namespaced_sys(matr2) - as.competitor_states = [sys1.H*sys1.jcn, sys2.H*sys2.jcn] + as.competitor_states = [sys1.ρ, sys2.ρ] end \ No newline at end of file