rename [gset_soft_thres to [gs]et_soft_threshold]
[mussa.git] / alg / test / test_nway.cpp
index 68ee988d4cb65187699d9b604c78cdd4eda2a817..1c63a4a9681af26cdcc8883f3a377ed75c960b41 100644 (file)
@@ -70,12 +70,12 @@ BOOST_AUTO_TEST_CASE( nway_refine )
   BOOST_CHECK( first_refined_size > 0 );
 
   // we're using a window size 30 (threshold 20) example
-  m1.set_soft_thres(22);
+  m1.set_soft_threshold(22);
   m1.nway();
   BOOST_CHECK( npath.refined_path_size() > 0);
   BOOST_CHECK( npath.refined_path_size() < first_refined_size);
 
-  m1.set_soft_thres(20);
+  m1.set_soft_threshold(20);
   m1.nway();
   BOOST_CHECK_EQUAL(npath.refined_path_size(), first_refined_size);
 }
@@ -184,6 +184,6 @@ GTTTTAATAAATGCACAATGCTCTCTTCCTGTTCTTC";
   m1.add_a_seq(seq3);
 
   m1.analyze(10, 8);
-  m1.set_soft_thres(10);
+  m1.set_soft_threshold(10);
   m1.nway();
 }