Loading src/include/TransitionMatrix.h +2 −2 Original line number Original line Diff line number Diff line Loading @@ -164,9 +164,9 @@ class TransitionMatrix { /*! \brief Test whether two instances of TransitionMatrix are equal. /*! \brief Test whether two instances of TransitionMatrix are equal. * * * Transition matrixes can be the result of a calculation or of a file input operation, * Transition matrices 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 * reading from a previously computed object. The `==` operator tests for the equivalence * of two transition matrixes, returning `true` if they are equivalnet, `false` otherwise. * of two transition matrices, returning `true` if they are equivalnet, `false` otherwise. * * * \param other: `TransitionMatrix &` Reference to the instance to be compared with. * \param other: `TransitionMatrix &` Reference to the instance to be compared with. * \return result: `bool` True, if the two instances are equal, false otherwise. * \return result: `bool` True, if the two instances are equal, false otherwise. Loading src/testing/test_TTMS.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -35,9 +35,9 @@ int main(int argc, char **argv) { } } a = TransitionMatrix::from_binary(legacy_file); a = TransitionMatrix::from_binary(legacy_file); b = TransitionMatrix::from_binary(hdf5_file, "HDF5"); b = TransitionMatrix::from_binary(hdf5_file, "HDF5"); if (*a == *b) printf("Transition matrixes a and b are equal.\n"); if (*a == *b) printf("Transition matrices a and b are equal.\n"); else { else { printf("Transition matrixes a and b are different.\n"); printf("Transition matrices a and b are different.\n"); result = 1; result = 1; } } return result; return result; Loading Loading
src/include/TransitionMatrix.h +2 −2 Original line number Original line Diff line number Diff line Loading @@ -164,9 +164,9 @@ class TransitionMatrix { /*! \brief Test whether two instances of TransitionMatrix are equal. /*! \brief Test whether two instances of TransitionMatrix are equal. * * * Transition matrixes can be the result of a calculation or of a file input operation, * Transition matrices 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 * reading from a previously computed object. The `==` operator tests for the equivalence * of two transition matrixes, returning `true` if they are equivalnet, `false` otherwise. * of two transition matrices, returning `true` if they are equivalnet, `false` otherwise. * * * \param other: `TransitionMatrix &` Reference to the instance to be compared with. * \param other: `TransitionMatrix &` Reference to the instance to be compared with. * \return result: `bool` True, if the two instances are equal, false otherwise. * \return result: `bool` True, if the two instances are equal, false otherwise. Loading
src/testing/test_TTMS.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -35,9 +35,9 @@ int main(int argc, char **argv) { } } a = TransitionMatrix::from_binary(legacy_file); a = TransitionMatrix::from_binary(legacy_file); b = TransitionMatrix::from_binary(hdf5_file, "HDF5"); b = TransitionMatrix::from_binary(hdf5_file, "HDF5"); if (*a == *b) printf("Transition matrixes a and b are equal.\n"); if (*a == *b) printf("Transition matrices a and b are equal.\n"); else { else { printf("Transition matrixes a and b are different.\n"); printf("Transition matrices a and b are different.\n"); result = 1; result = 1; } } return result; return result; Loading