From e0fddb46d8637292eada7301f3b0ef8a23e3de61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Tr=C3=A1vn=C3=AD=C4=8Dek?= <jan.travnicek@fit.cvut.cz> Date: Thu, 25 Nov 2021 14:53:14 +0100 Subject: [PATCH] data: fix naming of a parameter declaration vs definition --- alib2data/src/tree/unranked/UnrankedExtendedPattern.h | 2 ++ alib2data/src/tree/unranked/UnrankedNonlinearPattern.h | 9 ++++++--- alib2data/src/tree/unranked/UnrankedPattern.h | 2 ++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/alib2data/src/tree/unranked/UnrankedExtendedPattern.h b/alib2data/src/tree/unranked/UnrankedExtendedPattern.h index 917be1ef9d..1b77b9c719 100644 --- a/alib2data/src/tree/unranked/UnrankedExtendedPattern.h +++ b/alib2data/src/tree/unranked/UnrankedExtendedPattern.h @@ -88,6 +88,7 @@ public: * \brief Creates a new instance of the pattern with concrete alphabet, content, and wildcard. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param alphabet the initial alphabet of the pattern * \param pattern the initial content in it's natural representation */ @@ -97,6 +98,7 @@ public: * \brief Creates a new instance of the pattern with concrete content and wildcard. The alphabet is deduced from the content. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param pattern the initial content in it's natural representation */ explicit UnrankedExtendedPattern ( SymbolType subtreeWildcard, SymbolType subtreeGap, SymbolType nodeWildcard, ext::tree < SymbolType > pattern ); diff --git a/alib2data/src/tree/unranked/UnrankedNonlinearPattern.h b/alib2data/src/tree/unranked/UnrankedNonlinearPattern.h index 7ab412d26c..3e4b33cc3a 100644 --- a/alib2data/src/tree/unranked/UnrankedNonlinearPattern.h +++ b/alib2data/src/tree/unranked/UnrankedNonlinearPattern.h @@ -87,28 +87,31 @@ public: * \brief Creates a new instance of the pattern with concrete alphabet, content, wildcard, and nonlinear variables. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param nonlinearVariables the set of nonlinear variables * \param alphabet the initial alphabet of the pattern * \param pattern the initial content in it's natural representation */ - explicit UnrankedNonlinearPattern ( SymbolType subtreeWildcard, SymbolType gapSymbol, ext::set < SymbolType > nonlinearVariables, ext::set < SymbolType > alphabet, ext::tree < SymbolType > pattern ); + explicit UnrankedNonlinearPattern ( SymbolType subtreeWildcard, SymbolType subtreeGap, ext::set < SymbolType > nonlinearVariables, ext::set < SymbolType > alphabet, ext::tree < SymbolType > pattern ); /** * \brief Creates a new instance of the pattern with concrete content, wildcard, and nonlinear variables. The alphabet is deduced from the content. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param nonlinearVariables the set of nonlinear variables * \param pattern the initial content in it's natural representation */ - explicit UnrankedNonlinearPattern ( SymbolType subtreeWildcard, SymbolType gapSymbol, ext::set < SymbolType > nonlinearVariables, ext::tree < SymbolType > pattern ); + explicit UnrankedNonlinearPattern ( SymbolType subtreeWildcard, SymbolType subtreeGap, ext::set < SymbolType > nonlinearVariables, ext::tree < SymbolType > pattern ); /** * \brief Creates a new instance of the pattern with concrete content and wildcard. The alphabet is deduced from the content. Nonlinear variables are defaultly constructed to empty set. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param pattern the initial content in it's natural representation */ - explicit UnrankedNonlinearPattern ( SymbolType subtreeWildcard, SymbolType gapSymbol, ext::tree < SymbolType > pattern ); + explicit UnrankedNonlinearPattern ( SymbolType subtreeWildcard, SymbolType subtreeGap, ext::tree < SymbolType > pattern ); /** * \brief Creates a new instance of the pattern based on RankedNonlinearPattern, the alphabet is created from the content of the RankedNonlinearPattern. diff --git a/alib2data/src/tree/unranked/UnrankedPattern.h b/alib2data/src/tree/unranked/UnrankedPattern.h index 9e02ef0b6b..a5c461abd9 100644 --- a/alib2data/src/tree/unranked/UnrankedPattern.h +++ b/alib2data/src/tree/unranked/UnrankedPattern.h @@ -85,6 +85,7 @@ public: * \brief Creates a new instance of the pattern with concrete alphabet, content, and wildcard. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param alphabet the initial alphabet of the pattern * \param pattern the initial content in it's natural representation */ @@ -94,6 +95,7 @@ public: * \brief Creates a new instance of the pattern with concrete content and wildcard. The alphabet is deduced from the content. * * \param subtreeWildcard the wildcard symbol + * \param subtreeGap effectively wildcard^* * \param pattern the initial content in it's natural representation */ explicit UnrankedPattern ( SymbolType subtreeWildcard, SymbolType subtreeGap, ext::tree < SymbolType > pattern ); -- GitLab