Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Commits
ea5aee27
Commit
ea5aee27
authored
7 years ago
by
Jan Trávníček
Browse files
Options
Downloads
Patches
Plain Diff
fix some documentation in strings
parent
30833edc
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
alib2data/src/string/CyclicString.h
+6
-4
6 additions, 4 deletions
alib2data/src/string/CyclicString.h
alib2data/src/string/Epsilon.h
+4
-4
4 additions, 4 deletions
alib2data/src/string/Epsilon.h
alib2data/src/string/LinearString.h
+6
-4
6 additions, 4 deletions
alib2data/src/string/LinearString.h
with
16 additions
and
12 deletions
alib2data/src/string/CyclicString.h
+
6
−
4
View file @
ea5aee27
...
@@ -107,12 +107,12 @@ public:
...
@@ -107,12 +107,12 @@ public:
explicit CyclicString ( const Epsilon < SymbolType > & epsilon );
explicit CyclicString ( const Epsilon < SymbolType > & epsilon );
/**
/**
* @copydoc
automaton::Automaton
Base::clone()
* @copydoc
string::String
Base::clone()
*/
*/
virtual StringBase * clone ( ) const override;
virtual StringBase * clone ( ) const override;
/**
/**
* @copydoc
automaton::Automaton
Base::plunder()
* @copydoc
string::String
Base::plunder()
*/
*/
virtual StringBase * plunder ( ) && override;
virtual StringBase * plunder ( ) && override;
...
@@ -160,6 +160,8 @@ public:
...
@@ -160,6 +160,8 @@ public:
/**
/**
* Setter of the string content.
* Setter of the string content.
*
*
* \throws CommonException when new string contains symbols not present in the alphabet
*
* \param new List of symbols forming string.
* \param new List of symbols forming string.
*/
*/
void setContent ( ext::vector < SymbolType > str );
void setContent ( ext::vector < SymbolType > str );
...
@@ -200,12 +202,12 @@ public:
...
@@ -200,12 +202,12 @@ public:
virtual explicit operator std::string ( ) const override;
virtual explicit operator std::string ( ) const override;
/**
/**
* @copydoc alib::
Grammar
Base::inc()
* @copydoc alib::
Object
Base::inc()
*/
*/
virtual object::ObjectBase * inc ( ) && override;
virtual object::ObjectBase * inc ( ) && override;
/**
/**
* Type of normalized
automaton
.
* Type of normalized
string
.
*/
*/
typedef CyclicString < > normalized_type;
typedef CyclicString < > normalized_type;
};
};
...
...
This diff is collapsed.
Click to expand it.
alib2data/src/string/Epsilon.h
+
4
−
4
View file @
ea5aee27
...
@@ -75,12 +75,12 @@ public:
...
@@ -75,12 +75,12 @@ public:
Epsilon ( ext::set < SymbolType > alphabet );
Epsilon ( ext::set < SymbolType > alphabet );
/**
/**
* @copydoc
automaton::Automaton
Base::clone()
* @copydoc
string::String
Base::clone()
*/
*/
virtual StringBase * clone ( ) const override;
virtual StringBase * clone ( ) const override;
/**
/**
* @copydoc
automaton::Automaton
Base::plunder()
* @copydoc
string::String
Base::plunder()
*/
*/
virtual StringBase * plunder ( ) && override;
virtual StringBase * plunder ( ) && override;
...
@@ -157,12 +157,12 @@ public:
...
@@ -157,12 +157,12 @@ public:
static Epsilon EPSILON;
static Epsilon EPSILON;
/**
/**
* @copydoc alib::
Grammar
Base::inc()
* @copydoc alib::
Object
Base::inc()
*/
*/
virtual object::ObjectBase * inc ( ) && override;
virtual object::ObjectBase * inc ( ) && override;
/**
/**
* Type of normalized
automaton
.
* Type of normalized
string
.
*/
*/
typedef Epsilon < > normalized_type;
typedef Epsilon < > normalized_type;
};
};
...
...
This diff is collapsed.
Click to expand it.
alib2data/src/string/LinearString.h
+
6
−
4
View file @
ea5aee27
...
@@ -190,12 +190,12 @@ public:
...
@@ -190,12 +190,12 @@ public:
explicit LinearString ( const Epsilon < SymbolType > & epsilon );
explicit LinearString ( const Epsilon < SymbolType > & epsilon );
/**
/**
* @copydoc
automaton::Automaton
Base::clone()
* @copydoc
string::String
Base::clone()
*/
*/
virtual StringBase * clone ( ) const override;
virtual StringBase * clone ( ) const override;
/**
/**
* @copydoc
automaton::Automaton
Base::plunder()
* @copydoc
string::String
Base::plunder()
*/
*/
virtual StringBase * plunder ( ) && override;
virtual StringBase * plunder ( ) && override;
...
@@ -250,6 +250,8 @@ public:
...
@@ -250,6 +250,8 @@ public:
/**
/**
* Setter of the string content.
* Setter of the string content.
*
*
* \throws CommonException when new string contains symbols not present in the alphabet
*
* \param new List of symbols forming string.
* \param new List of symbols forming string.
*/
*/
void setContent ( ext::vector < SymbolType > str );
void setContent ( ext::vector < SymbolType > str );
...
@@ -290,12 +292,12 @@ public:
...
@@ -290,12 +292,12 @@ public:
virtual explicit operator std::string ( ) const override;
virtual explicit operator std::string ( ) const override;
/**
/**
* @copydoc alib::
Grammar
Base::inc()
* @copydoc alib::
Object
Base::inc()
*/
*/
virtual object::ObjectBase * inc ( ) && override;
virtual object::ObjectBase * inc ( ) && override;
/**
/**
* Type of normalized
automaton
.
* Type of normalized
string
.
*/
*/
typedef LinearString < > normalized_type;
typedef LinearString < > normalized_type;
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment