diff options
author | Joe Zhao <ztuowen@gmail.com> | 2014-10-07 16:00:19 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2014-10-07 16:00:19 +0800 |
commit | 40be5377d963b4a87fcfd000ad5c74c66ef41e43 (patch) | |
tree | 494c96f3051b51581aca9fccb3cbae2b5c2e309a | |
parent | 75d91ffc50cfa9c3351241f0ff4b1ccb1d01e7c5 (diff) | |
download | tnet-40be5377d963b4a87fcfd000ad5c74c66ef41e43.tar.gz tnet-40be5377d963b4a87fcfd000ad5c74c66ef41e43.tar.bz2 tnet-40be5377d963b4a87fcfd000ad5c74c66ef41e43.zip |
output 1+++
-rw-r--r-- | src/CuTNetLib/cuCompDisc.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CuTNetLib/cuCompDisc.cc b/src/CuTNetLib/cuCompDisc.cc index 57b2b79..ab55476 100644 --- a/src/CuTNetLib/cuCompDisc.cc +++ b/src/CuTNetLib/cuCompDisc.cc @@ -146,12 +146,14 @@ namespace TNet CuCompound:: Update() { + printf("U+\n"); for(int i=0; i<mBlocks.size(); i++) if ( mBlocks[i]->IsUpdatable() ) { CuUpdatableComponent& rComp = dynamic_cast<CuUpdatableComponent&>(*mBlocks[i]); rComp.Update(); } + printf("U-\n"); } |