Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
086aba2a
Commit
086aba2a
authored
1 year ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation to TransitionMatrix comparison operator
parent
20fd162b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/TransitionMatrix.h
+11
-0
11 additions, 0 deletions
src/include/TransitionMatrix.h
with
11 additions
and
0 deletions
src/include/TransitionMatrix.h
+
11
−
0
View file @
086aba2a
...
@@ -161,6 +161,17 @@ class TransitionMatrix {
...
@@ -161,6 +161,17 @@ class TransitionMatrix {
* (default is "LEGACY").
* (default is "LEGACY").
*/
*/
void
write_binary
(
std
::
string
file_name
,
std
::
string
mode
=
"LEGACY"
);
void
write_binary
(
std
::
string
file_name
,
std
::
string
mode
=
"LEGACY"
);
/*! \brief Test whether two instances of TransitionMatrix are equal.
*
* Transition matrixes can be the result of a calculation or of a file input operation,
* reading from a previously computed object. The `==` operator tests for the equivalence
* of two transition matrixes, returning `true` if they are equivalnet, `false` otherwise.
*
* \param other: `TransitionMatrix &` Reference to the instance to be compared with.
* \return result: `bool` True, if the two instances are equal, false otherwise.
*/
bool
operator
==
(
TransitionMatrix
&
other
);
};
};
#endif
#endif
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