feat(reduction): add reduction PII add

This commit is contained in:
2025-11-17 18:00:54 +01:00
parent dbaa9440b4
commit 135f425fd7
8 changed files with 400 additions and 60 deletions

View File

@@ -26,15 +26,14 @@ static void generic();
|* Implementation *|
\*---------------------------------------------------------------------*/
int mainTest()
{
int mainTest() {
// activer ci-dessous seulement le TP voulu (pas tous)
add();
//generic();
return EXIT_SUCCESS;
}
}
/*--------------------------------------*\
|* private *|
@@ -43,20 +42,18 @@ int mainTest()
/**
* activer ci-dessous la version souhaiter
*/
void add()
{
void add() {
VTReductionAddIntI test1;
VTReductionAddIntII test2;
test1.run();
//test2.run();
}
// test1.run();
test2.run();
}
/**
* activer ci-dessous la version souhaiter
*/
void generic()
{
void generic() {
VTReductionGenericI test1;
VTReductionGenericII test2;
VTReductionGenericLongII test3;
@@ -64,9 +61,8 @@ void generic()
test1.run();
// test2.run();
// test3.run();
}
}
/*----------------------------------------------------------------------*\
|* End *|
\*---------------------------------------------------------------------*/