summaryrefslogtreecommitdiff
path: root/src/CuTNetLib/cuComponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CuTNetLib/cuComponent.h')
-rw-r--r--src/CuTNetLib/cuComponent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CuTNetLib/cuComponent.h b/src/CuTNetLib/cuComponent.h
index fc9666c..9eec461 100644
--- a/src/CuTNetLib/cuComponent.h
+++ b/src/CuTNetLib/cuComponent.h
@@ -136,10 +136,10 @@ namespace TNet {
/// Perform forward pass propagateion Input->Output,
/// wrapper for the PropagateFnc method
- void Propagate();
+ virtual void Propagate();
/// Perform backward pass propagateion ErrorInput->ErrorOutput,
/// wrapper for the BackpropagateFnc method
- void Backpropagate();
+ virtual void Backpropagate();
/// Reads the component parameters from stream
virtual void ReadFromStream(std::istream& rIn) { }