Skip to content

Commit 42237a6

Browse files
authored
Update viterbi.cpp
1 parent 3d3227e commit 42237a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prediction/src/viterbi/viterbi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ std::vector<int> exclude_states_in_c; //global exclude states
1717
// Function prototype for viterbi_main with C linkage specification
1818
extern "C" void run_viterbi(std::vector<int> observation, int num_observations, std::vector<int> states, int num_states, std::vector<std::vector<double>> transition_matrix, std::vector<std::vector<double>> emission_matrix, std::vector<double> initial_matrix, std::vector<int> states_to_work_python);
1919

20-
// Implementation of my_cpp_function with C linkage specification
20+
// Implementation of viterbi with C linkage specification
2121
extern "C" void viterbi(std::vector<int> observation, int num_observations, std::vector<int> states, int num_states, std::vector<std::vector<double>> transition_matrix, std::vector<std::vector<double>> emission_matrix, std::vector<double> initial_matrix, std::vector<int> states_to_work_python)
2222
{
2323
// Run viterbi program

0 commit comments

Comments
 (0)