Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F376187
ccam.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Size
1 KB
Referenced Files
None
Subscribers
None
ccam.cpp
View Options
//===-- apps/ccam/ccam.cpp --------------------------------------*- C++ -*-===//
//
// The RoSA Framework -- Application CCAM
//
//===----------------------------------------------------------------------===//
///
/// \file apps/ccam/ccam.cpp
///
/// \author Maximilian Goetzinger (maximilian.goetzinger@tuwien.ac.at)
///
/// \date 2019
///
/// \brief The application CCAM implements the case study from the paper:
/// M. Goetzinger, N. TaheriNejad, H. A. Kholerdi, A. Jantsch, E. Willegger,
/// T. Glatzl, A.M. Rahmani, T.Sauter, P. Liljeberg: Model - Free Condition
/// Monitoring with Confidence
//===----------------------------------------------------------------------===//
#include
"rosa/agent/SignalStateDetector.hpp"
#include
<iostream>
int
main
(
void
)
{
// Just some tests :D
std
::
vector
vec
=
{
7
,
3
,
5
,
1
,
9
};
std
::
sort
(
vec
.
rbegin
(),
vec
.
rend
());
// std::reverse(vec.begin(), vec.end());
for
(
auto
it
=
vec
.
cbegin
();
it
!=
vec
.
cend
();
++
it
)
{
std
::
cout
<<
*
it
<<
' '
;
}
return
0
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sun, Jun 8, 8:40 PM (23 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
150524
Default Alt Text
ccam.cpp (1 KB)
Attached To
Mode
R20 SoC_Rosa_repo
Attached
Detach File
Event Timeline
Log In to Comment