Skip to content

Commit

Permalink
WIP Step 12
Browse files Browse the repository at this point in the history
Ajout des jeux de donnees Abalone et TicTacToe dans khiops\test\LearningTest\datasets, pour les tests de portabilite
  • Loading branch information
marcboulle committed Jan 17, 2024
1 parent 546dfa8 commit 230d40f
Show file tree
Hide file tree
Showing 10 changed files with 5,981 additions and 781 deletions.
4 changes: 2 additions & 2 deletions src/Learning/KWData/KWCLex.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ YY_RULE_SETUP

// Initialisation de la valeur du token
c = yytext[0];
if (not isprint(c))
if (not p_isprint(c))
{
sToken += '[';
sToken += IntToString((int)c);
Expand All @@ -1160,7 +1160,7 @@ YY_RULE_SETUP
nCorrectedLineNumber--;
break;
}
if (not isprint(c))
if (not p_isprint(c))
{
if (sToken.GetLength() < nMaxLength)
{
Expand Down
Loading

0 comments on commit 230d40f

Please sign in to comment.