Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lib4neuro
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MolDyn
lib4neuro
Commits
be2d88a2
Commit
be2d88a2
authored
7 years ago
by
Martin Mrovec
Browse files
Options
Downloads
Patches
Plain Diff
FIX: test suite for connection
parent
60828673
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/connection_m.fun
+11
-16
11 additions, 16 deletions
src/connection_m.fun
with
11 additions
and
16 deletions
src/connection_m.fun
+
11
−
16
View file @
be2d88a2
...
@@ -7,13 +7,11 @@
...
@@ -7,13 +7,11 @@
test_suite
connection_m
test_suite
connection_m
!
Global
variables
declaration
!
Global
variables
declaration
type
(
neuron_t
)
,
target
::
n1
type
(
neuron_t
)
,
target
::
n2
type
(
neuron_t
)
,
pointer
::
n1_p
class
(
neuron_t
),
pointer
::
n1_p
type
(
neuron_t
)
,
pointer
::
n2_p
class
(
neuron_t
),
pointer
::
n2_p
type
(
neuron_t
)
,
pointer
::
dummy_p
class
(
neuron_t
),
pointer
::
dummy_p
type
(
connection_t
)
,
pointer
::
con
type
(
connection_t
)
,
pointer
::
con
...
@@ -24,14 +22,11 @@ setup
...
@@ -24,14 +22,11 @@ setup
write
(*
,*)
'
+------------------------+
'
write
(*
,*)
'
+------------------------+
'
write
(*
,*)
'
|
SETUP
BEFORE
UNIT
TEST
|
'
write
(*
,*)
'
|
SETUP
BEFORE
UNIT
TEST
|
'
write
(*
,*)
'
+------------------------+
'
write
(*
,*)
'
+------------------------+
'
write
(*
,*)
'Creating
instances
of
the
class
neuron_t
.
..
'
write
(*
,*)
'Creating
instances
of
the
class
mock_neuron_t
.
..
'
n1
=
neuron_t
(
21.3
)
n1_p
=>
mock_neuron_t
()
n2
=
neuron_t
(
13.7
)
n2_p
=>
mock_neuron_t
()
write
(*
,*)
'Assigning
instances
to
pointer
.
..
'
n1_p
=>
n1
n2_p
=>
n2
write
(*
,*)
'Creating
an
instance
of
the
class
interval_connection_t
.
..
'
write
(*
,*)
'Creating
an
instance
of
the
class
interval_connection_t
.
..
'
con
=>
connection_t
(
n1_p
,
n2_p
,
5.25
)
con
=>
connection_t
(
n1_p
,
n2_p
,
real
(
5.25
,
real_4neuro
)
)
nullify
(
dummy_p
)
nullify
(
dummy_p
)
write
(*
,*)
'Ready
for
test
.
'
write
(*
,*)
'Ready
for
test
.
'
end
setup
end
setup
...
@@ -62,7 +57,7 @@ test getters_setters
...
@@ -62,7 +57,7 @@ test getters_setters
!
Test
of
get_weight
!
Test
of
get_weight
assert_real_equal
(
con%get_weight
(),
5.25
e+
0
)
assert_real_equal
(
con%get_weight
(),
5.25
e+
0
)
!
Test
of
adjust_weight
!
Test
of
adjust_weight
call
con%adjust_weight
(
1.0
)
call
con%adjust_weight
(
real
(
1.0
,
real_4neuro
)
)
assert_real_equal
(
con%get_weight
(),
6.25
e+
0
)
assert_real_equal
(
con%get_weight
(),
6.25
e+
0
)
write
(*
,*)
'
.
..
finished
+++'
write
(*
,*)
'
.
..
finished
+++'
end
test
end
test
...
@@ -74,10 +69,10 @@ test input_and_output_neurons
...
@@ -74,10 +69,10 @@ test input_and_output_neurons
write
(*
,*)
'+++
Test
of
input
and
output
neurons
...
'
write
(*
,*)
'+++
Test
of
input
and
output
neurons
...
'
!
Input
neuron
!
Input
neuron
dummy_p
=>
con%get_input_neuron
()
dummy_p
=>
con%get_input_neuron
()
assert_real_equal
(
dummy_p%get_state
(),
21.3
d
+
0
)
assert_real_equal
(
dummy_p%get_state
(),
15.0
e
+
0
)
!
Output
neuron
!
Output
neuron
dummy_p
=>
con%get_output_neuron
()
dummy_p
=>
con%get_output_neuron
()
assert_real_equal
(
dummy_p%get_state
(),
1
3.7
d
+
0
)
assert_real_equal
(
dummy_p%get_state
(),
1
5.0
e
+
0
)
write
(*
,*)
'
.
..
finished
+++'
write
(*
,*)
'
.
..
finished
+++'
end
test
end
test
...
@@ -88,7 +83,7 @@ test pass_signal
...
@@ -88,7 +83,7 @@ test pass_signal
write
(*
,*)
'+++
Test
of
passing
a
signal
...
'
write
(*
,*)
'+++
Test
of
passing
a
signal
...
'
dummy_p
=>
con%get_output_neuron
()
dummy_p
=>
con%get_output_neuron
()
call
con%pass_signal
()
call
con%pass_signal
()
assert_real_equal
(
dummy_p%get_
state
(),
111.825
d
+
0
)
assert_real_equal
(
dummy_p%get_
potential
(),
78.75
e
+
0
)
write
(*
,*)
'
.
..
finished
+++'
write
(*
,*)
'
.
..
finished
+++'
end
test
end
test
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment