add Vcs entries to control file
[debian/gnuradio] / gr-trellis / src / lib / trellis_metrics_c.cc
index 1ff5f4540403cc76f44a4cc44a81b9dd95583071..4fac9f6d2a6f3845811943c9050899597519b3e7 100644 (file)
@@ -6,7 +6,7 @@
  * 
  * GNU Radio is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
  * any later version.
  * 
  * GNU Radio is distributed in the hope that it will be useful,
  * 
  * You should have received a copy of the GNU General Public License
  * along with GNU Radio; see the file COPYING.  If not, write to
- * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
  */
 
+// WARNING: this file is machine generated.  Edits will be over written
+
 #ifndef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
 
 trellis_metrics_c_sptr
-trellis_make_metrics_c (const int O, const int D,  const std::vector<gr_complex> &TABLE, trellis_metric_type_t TYPE)
+trellis_make_metrics_c (int O, int D,  const std::vector<gr_complex> &TABLE, trellis_metric_type_t TYPE)
 {
   return trellis_metrics_c_sptr (new trellis_metrics_c (O,D,TABLE,TYPE));
 }
 
 
 
-trellis_metrics_c::trellis_metrics_c (const int O, const int D,  const std::vector<gr_complex> &TABLE, trellis_metric_type_t TYPE)
+trellis_metrics_c::trellis_metrics_c (int O, int D,  const std::vector<gr_complex> &TABLE, trellis_metric_type_t TYPE)
   : gr_block ("metrics_c",
              gr_make_io_signature (1, -1, sizeof (gr_complex)),
              gr_make_io_signature (1, -1, sizeof (float))),
@@ -52,7 +54,10 @@ trellis_metrics_c::trellis_metrics_c (const int O, const int D,  const std::vect
   set_output_multiple ((int)d_O);
 }
 
-
+void trellis_metrics_c::set_TABLE (const std::vector<gr_complex> &table)
+{
+  d_TABLE = table;
+}
 
 
 void
@@ -83,11 +88,7 @@ for (int m=0;m<nstreams;m++) {
   float *out = (float *) output_items[m];
 
   for (int i = 0; i < noutput_items / d_O ; i++){
-#if 0
-    calc_metric_f(d_O, d_D, d_TABLE,&(in[i*d_D]),&(out[i*d_O]), d_TYPE);
-#elif 1
-    calc_metric_c(d_O, d_D, d_TABLE,&(in[i*d_D]),&(out[i*d_O]), d_TYPE);
-#endif
+    calc_metric(d_O, d_D, d_TABLE,&(in[i*d_D]),&(out[i*d_O]), d_TYPE);
   } 
 }