repo.or.cz
/
povnn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added makefile to project; Removed error in code;
[povnn.git]
/
settableneuralinput.cpp
blob
39b789101c2093d16426a03617a3c6e87ecbcc98
1
#include
"settableneuralinput.h"
2
3
SettableNeuralInput
::
SettableNeuralInput
(
double
newValue
,
NeuralInput
*
parent
)
4
:
NeuralInput
(
parent
),
value
(
newValue
)
5
{
6
}
7
8
double
SettableNeuralInput
::
getValue
()
9
{
10
return this
->
value
;
11
}