Skip to content

Commit 485fef9

Browse files
committed
update version
1 parent 4da7723 commit 485fef9

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

Project.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "QuanEstimation"
22
uuid = "088c8dff-a786-4a66-974c-03d3f6773f87"
33
authors = ["Jing Liu <[email protected]>", "Huaiming Yu <[email protected]>", "Mao Zhang <[email protected]>"]
4-
version = "0.1.5"
4+
version = "0.1.6"
55

66
[deps]
77
BoundaryValueDiffEq = "764a87c0-6b3e-53db-9096-fe964310641d"
@@ -17,8 +17,6 @@ OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
1717
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1818
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
1919
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
20-
ReinforcementLearning = "158674fc-8238-5cab-b5ba-03dfc80d1318"
21-
ReinforcementLearningCore = "de1b191a-4ae0-4afa-a27b-92d07f46b2d6"
2220
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
2321
SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13"
2422
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
@@ -42,18 +40,15 @@ Flux = "0.12, 0.13, 0.14"
4240
Interpolations = "0.13, 0.14, 0.15"
4341
IntervalSets = "0.5, 0.7"
4442
JLD2 = "0.4"
45-
julia = "1.9"
4643
OrdinaryDiffEq = "6"
4744
QuadGK = "2"
48-
ReinforcementLearning = "0.10"
49-
ReinforcementLearningCore = "0.8.13"
5045
Revise = "3"
5146
SCS = "1, 2"
5247
StableRNGs = "1"
5348
StatsBase = "0.33, 0.34"
5449
Trapz = "2"
5550
Zygote = "0.6"
56-
51+
julia = "1.10"
5752

5853
[extras]
5954
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/Algorithm/Algorithm.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ alg_type(::NM) = :NM
207207
alg_type(::RI) = :RI
208208

209209
include("AD.jl")
210-
include("DDPG.jl")
210+
# include("DDPG.jl")
211211
include("DE.jl")
212212
include("GRAPE.jl")
213213
include("NM.jl")

src/QuanEstimation.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ using SparseArrays
1414
using DelimitedFiles
1515
using StatsBase
1616
using Flux
17-
using ReinforcementLearning
1817
using SCS
1918
using BoundaryValueDiffEq
2019
using Trapz

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ end
6161
include("algorithms/test_PSO.jl")
6262
end
6363

64-
@testset "DDPG" begin
65-
include("algorithms/test_DDPG.jl")
66-
end
64+
# @testset "DDPG" begin
65+
# include("algorithms/test_DDPG.jl")
66+
# end
6767
end
6868

6969
@testset "Utils" begin

0 commit comments

Comments
 (0)