本文整理汇总了C++中Samu::reward方法的典型用法代码示例。如果您正苦于以下问题:C++ Samu::reward方法的具体用法?C++ Samu::reward怎么用?C++ Samu::reward使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Samu
的用法示例。
在下文中一共展示了Samu::reward方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: to_samu
double to_samu ( int channel, SPOTriplets &tv )
{
double r {0.0};
try
{
samu.triplet ( channel, tv );
r = samu.reward();
}
catch ( const char* err )
{
std::cerr << err << std::endl;
}
return r;
}
示例2: main
int main ( int argc, char **argv )
{
#ifndef Q_LOOKUP_TABLE
std::string samuImage {"samu.image.txt"};
std::fstream samuFile ( samuImage, std::ios_base::in );
if ( samuFile )
samu.load ( samuFile );
#endif
struct sigaction sa;
sa.sa_handler = save_samu;
sigemptyset ( &sa.sa_mask );
sa.sa_flags = SA_RESTART;
sigaction ( SIGINT, &sa, NULL );
sigaction ( SIGTERM, &sa, NULL );
sigaction ( SIGKILL, &sa, NULL );
sigaction ( SIGHUP, &sa, NULL );
// Do not remove this copyright notice!
std::cout << "This program is Isaac, the son of Samu Bátfai."
<< std::endl
<< "Copyright (C) 2015 Norbert Bátfai"
<< std::endl
<< "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>"
<< std::endl
<< "This is free software: you are free to change and redistribute it."
<< std::endl
<< "There is NO WARRANTY, to the extent permitted by law."
<< std::endl
<< std::endl;
std::cout << "The prenatal development phase has started."
<< std::endl;
//
std::cout << "The prenatal development phase has finished."
<< std::endl;
std::string test[] =
{
"A rare black squirrel has become a regular visitor to a suburban garden",
"This is a car",
"This car is mine",
"I have a little car",
"The sky is blue",
"The little brown bear has eaten all of the honey",
"I love Samu"
};
int j {0};
for ( ; samu.run(); )
{
double sum {0.0};
if ( samu.sleep() )
{
for ( int i {0}; i<7; ++i )
{
samu << test[i];
sum += samu.reward();
}
std::cerr << "###### " << ++j << "-th iter " << sum << std::endl;
}
}
return 0;
}