Skip to content

Commit 8bd2335

Browse files
authored
Merge pull request #5 from maxreiss123/develop
Develop
2 parents 1a269cf + 5e01f69 commit 8bd2335

12 files changed

+6559
-18
lines changed

Project.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
name = "JGep"
1+
name = "JGepRegression"
22
uuid = "2f0a5bb0-5f4f-4f7f-b515-93a1e67611af"
33
authors = ["Max Reissmann <reissmannm@student.unimelb.edu.au>"]
4-
version = "0.3.0"
4+
version = "0.3.1"
5+
56

67
[deps]
78
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
@@ -26,7 +27,3 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2627
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2728
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2829
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
29-
30-
[compat]
31-
Printf = "1.11.0"
32-
Test = "1.11.0"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The repository contains the implementation of the Gene Expression Programming[1]
2020
```
2121
julia --project=.
2222
using Pkg
23-
Pkg.add(url="https://github.com/maxreiss123/GEP_SBP_.git")
23+
Pkg.add("JGep")
2424
```
2525

2626

@@ -45,3 +45,4 @@ The repository contains the implementation of the Gene Expression Programming[1]
4545
- [ ] Documentation
4646
- [ ] Re-write postprocessing
4747
- [ ] Improve usability for user interaction
48+
- [ ] Next operations: Tail flip, Connection symbol flip, wrapper class for easy usage, config class for predefinition, staggered exploration

src/JGep.jl renamed to src/JGepRegression.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module JGep
1+
module JGepRegression
22

33
include("Entities.jl")
44
include("Gep.jl")
@@ -48,4 +48,4 @@ export generate_gene, generate_preamle!, compile_expression!, generate_chromosom
4848
export genetic_operations!
4949

5050

51-
end
51+
end

test/Main_min_example.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
include("../src/JGep.jl")
1+
include("../src/JGepRegression.jl")
22

3-
using .JGep
3+
using .JGepRegression
44
using DynamicExpressions
55
using OrderedCollections
66
using BenchmarkTools

test/Main_min_with_csv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JGep
1+
using JGepRegression
22
using DynamicExpressions
33
using OrderedCollections
44
using BenchmarkTools

test/Main_min_with_csv_and_units.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JGep
1+
using JGepRegression
22
using DynamicExpressions
33
using OrderedCollections
44
using BenchmarkTools
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,4 +234,4 @@ end
234234
dim6 = calculate_vector_dimension!(tree6)
235235
@test dim6 == [1.0, 1.0, 0.0, 0.0] # Should return existing dimension without recalculation
236236
end
237-
end
237+
end

test/paper_test.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JGep
1+
using JGepRegression
22
using DynamicExpressions
33
using OrderedCollections
44
using CSV

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include("Entity_test.jl")
2-
include("Spb_core.jl")
2+
include("Spb_core_test.jl")
3+
include("non_dom_sort_test.jl")

0 commit comments

Comments
 (0)