This file is indexed.

/usr/include/sphinx3/srch.h is in libs3decoder-dev 0.8-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
/* ====================================================================
 * Copyright (c) 1999-2004 Carnegie Mellon University.  All rights
 * reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * This work was supported in part by funding from the Defense Advanced 
 * Research Projects Agency and the National Science Foundation of the 
 * United States of America, and the CMU Sphinx Speech Consortium.
 *
 * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND 
 * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
 * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * ====================================================================
 *
 */

/* srch.h
 * HISTORY
 * $Log$
 * Revision 1.1  2006/04/05  20:27:30  dhdfu
 * A Great Reorganzation of header files and executables
 * 
 * Revision 1.2  2006/02/23 15:26:10  arthchan2003
 * Merged from SPHINX3_5_2_RCI_IRII:
 *
 * Summary of changes. Detail could be seen in the comments from the
 * branches.
 *
 *  After 6 months, we have two more searches using interface
 * provided by srch.c. That included an adapted version of Sphinx 2's FSG
 * search.  Also, the original version of flat-lexicon decoding search.
 *
 * Second stage search operation is still not properly put in the srch_t
 * structure.  We should create function hooks that allow developer to
 * put the code more properly than now.
 *
 * The interface of srch.c is still not very completed. Things we should
 * support include switching of AM and MLLR.  They are currently
 * commented.
 *
 * Mode 5, the word-dependent tree copies are now fended off from the
 * users.
 *
 * Mode 2, the FSG search are opened.  It is not very well tested so the
 * user will be warned about its nature.
 *
 * Revision 1.1.4.15  2006/01/16 20:01:20  arthchan2003
 * Added Commented code in srch.[ch] for second-stage rescoring. Not used for now.
 *
 * Revision 1.1.4.14  2005/11/17 06:36:36  arthchan2003
 * There are several important changes. 1, acoustic score scale has changed back to put it the search structure.  This fixed a bug introduced pre-2005 code branching where only the scaling factor of the last frame. 2, Added a fmt argument of matchseg_write , implemented segmentation output for s2 and ctm file format. matchseg_write also now shared across the flat and tree decoder now. 3, Added Rong's read_seg_hyp_line.
 *
 * Revision 1.1.4.13  2005/09/25 19:23:55  arthchan2003
 * 1, Added arguments for turning on/off LTS rules. 2, Added arguments for turning on/off composite triphones. 3, Moved dict2pid deallocation back to dict2pid. 4, Tidying up the clean up code.
 *
 * Revision 1.1.4.12  2005/09/18 01:44:12  arthchan2003
 * Very boldly, started to support flat lexicon decoding (mode 3) in srch.c.  Add log_hypseg. Mode 3 is implemented as srch-one-frame implementation. Scaling doesn't work at this point.
 *
 * Revision 1.1.4.11  2005/09/11 23:07:28  arthchan2003
 * srch.c now support lattice rescoring by rereading the generated lattice in a file. When it is operated, silence cannot be unlinked from the dictionary.  This is a hack and its reflected in the code of dag, kbcore and srch. code
 *
 * Revision 1.1.4.10  2005/08/02 21:37:28  arthchan2003
 * 1, Used s3_cd_gmm_compute_sen instead of approx_cd_gmm_compute_sen in mode 2, 4 and 5.  This will suppose to make s3.0 to be able to read SCHMM and use them as well. 2, Change srch_gmm_compute_lv2 to accept a two-dimensional array (no_stream*no_coeff) instead of a one dimensional array (no_coeff).
 *
 * Revision 1.1.4.9  2005/07/24 19:35:59  arthchan2003
 * Added GAUDEN_EVAL_WINDOW in srch.h. Assuming this is property of a search.
 *
 * Revision 1.1.4.8  2005/07/24 01:39:26  arthchan2003
 * Added srch_on_srch_frame_lv[12] in the search abstraction routine.  This will allow implementation just provide the search for one frame without supplying all function pointer in the standard abstraction.
 *
 * Revision 1.1.4.7  2005/07/22 03:41:05  arthchan2003
 * 1, (Incomplete) Add function pointers for flat foward search. Notice implementation is not yet filled in. 2, adding log_hypstr and log_hyp_detailed.  It is sphinx 3.0 version of matchwrite.  Add it to possible code merge.
 *
 * Revision 1.1.4.6  2005/07/17 05:54:55  arthchan2003
 * replace vithist_dag_write_header with dag_write_header
 *
 * Revision 1.1.4.5  2005/07/13 18:46:39  arthchan2003
 * Re-included srch_fsg.h
 *
 * Revision 1.1.4.4  2005/07/07 02:37:39  arthchan2003
 * 1, Changed names of srchmode* functions to srch_mode*, 2, complete srch_mode_index_to_str, 3, Remove srch_rescoring and ask implementation to call these "rescoring functions" themselves.  The reason is rescoring is not as universal as I would think in the general search. I think search implementer should be the one who decide whether rescoring is one part of their search algorithms
 *
 * Revision 1.1.4.3  2005/07/04 07:18:49  arthchan2003
 * Disabled support of FSG. Added comments for srch_utt_begin and srch_utt_end.
 *
 * Revision 1.1.4.2  2005/07/03 23:04:55  arthchan2003
 * 1, Added srchmode_str_to_index, 2, called the deallocation routine of the search implementation layer in srch_uninit
 *
 * Revision 1.1.4.1  2005/06/28 07:03:01  arthchan2003
 * Added read_fsg operation as one method. Currently, it is still not clear how it should iteract with lm
 *
 * Revision 1.1  2005/06/22 02:24:42  arthchan2003
 * Log. A search interface implementation are checked in. I will call
 * srch_t to be search abstraction or search mechanism from now on.  The
 * major reason of separating with the search implementation routine
 * (srch_*.[ch]) is that search is something that people could come up
 * with thousands of ways to implement.
 *
 * Such a design shows a certain sense of defiance of conventional ways
 * of designing speech recognition. Namely, **always** using generic
 * graph as the grandfather ancester of every search lattice.  This could
 * 1) break a lot of legacy optimization code. 2) could be slow depends
 * on the implementation.
 *
 * The current design only specify the operations that are supposed to be
 * generic in every search (or atomic search operations (ASOs)).
 * Ideally, users only need to implement the interface to make the code
 * work for another search.
 *
 * From this point of view, the current check-in still have some
 * fundamental flaws.  For example, the communication mechanism between
 * different atomic search operations are not clearly defined. Scores are
 * now computed and put into structures of ascr. (ascr has no clear
 * interface to outside world). This is something we need to improve.
 *
 * Revision 1.18  2005/06/16 04:59:10  archan
 * Sphinx3 to s3.generic, a gentle-refactored version of Dave's change in senone scale.
 *
 * Revision 1.17  2005/06/10 03:40:57  archan
 * 1, Fixed doxygen documentation of srch.h, 2, eliminate srch.h C-style functions. 3, Start to fend off the users for using mode 5.  We are ready to merge the code.
 *
 * Revision 1.16  2005/06/10 03:01:50  archan
 * Fixed file_open.
 *
 * Revision 1.15  2005/06/09 21:03:33  archan
 * Update srch.h and srch_debug.c such that include files doesn't depend on explicitly specified directory name.  Rather it would be taken care by -I option in Makefile.am
 *
 * Revision 1.14  2005/05/11 06:10:38  archan
 * Code for lattice and back track pointer table dumping is now wrapped in reg_result_dump.  The function is shared across mode 4 and mode 5.  Possibly later for mode 3 and mode 6 as well.
 *
 * Revision 1.13  2005/05/11 00:18:45  archan
 * Add comments on srch.h and srch_time_switch_tree.h and srch_debug.h on how things work. A very detail comment is added in srch.h to describe how generally srch_t is interacting with other parts of the code.
 *
 * Revision 1.12  2005/05/04 05:15:25  archan
 * reverted the last change, seems to be not working because of compilation issue. Try not to deal with it now.
 *
 * Revision 1.1  2005/05/04 04:46:04  archan
 * Move srch.c and srch.h to search. More and more this type of refactoring will be done in future
 *
 * Revision 1.10  2005/05/03 04:09:09  archan
 * Implemented the heart of word copy search. For every ci-phone, every word end, a tree will be allocated to preserve its pathscore.  This is different from 3.5 or below, only the best score for a particular ci-phone, regardless of the word-ends will be preserved at every frame.  The graph propagation will not collect unused word tree at this point. srch_WST_propagate_wd_lv2 is also as the most stupid in the century.  But well, after all, everything needs a start.  I will then really get the results from the search and see how it looks.
 *
 * Revision 1.9  2005/04/25 19:22:47  archan
 * Refactor out the code of rescoring from lexical tree. Potentially we want to turn off the rescoring if we need.
 *
 * Revision 1.8  2005/04/22 04:22:36  archan
 * Add gmm_wrap, this will share code across op_mode 4 and op_mode 5. Also it also separate active senone selection into a different process.  I hope this is the final step before making the WST search works.  At the current stage, the code of mode-5 looks very much alike mode-4.  This is intended because in Prototype 4, tail sharing will be used to reduce memory.
 *
 * Revision 1.7  2005/04/21 23:50:26  archan
 * Some more refactoring on the how reporting of structures inside kbcore_t is done, it is now 50% nice. Also added class-based LM test case into test-decode.sh.in.  At this moment, everything in search mode 5 is already done.  It is time to test the idea whether the search can really be used.
 *
 * Revision 1.6  2005/04/20 03:42:55  archan
 * srch.c now is the only of the master search driver. When there is any change in the **interaction** of different blocks, srch.c should be changed first.  Then the search implenetation, such as srch_time_switch_tree.c
 *
 * Revision 1.5  2005/03/30 01:22:47  archan
 * Fixed mistakes in last updates. Add
 *
 * 
 * 17-Mar-2005 A. Chan (archan@cs.cmu.edu) at Carnegie Mellon University
 * 1            Started. This replaced utt.c starting from Sphinx 3.6. 
 */

#include <stdio.h>

#include <s3types.h>
#include <glist.h>
#include "dag.h"
#include "lm.h"
#include "ascr.h"
#include "adaptor.h"
#include "stat.h"
#include "fast_algo_struct.h"
#include "kbcore.h"
#include "kb.h"


/* Mode 1 */
#include "srch_allphone.h"

/* Mode 2 */
#include "srch_fsg.h"

/* Mode 3 */
#include "srch_flat_fwd.h"

/* Mode 4 */
#include "srch_time_switch_tree.h"

/* Mode 5 */
#include "srch_word_switch_tree.h"

/* Mode 1368*/
#include "srch_do_nothing.h"

/* Mode 1369*/
#include "srch_debug.h"


#include "srch_output.h"

#ifndef _SRCH_H_
#define _SRCH_H_


#ifdef __cplusplus
extern "C" {
#endif
#if 0
/* Fool Emacs. */
}
#endif

#define SRCH_SUCCESS 0
#define SRCH_FAILURE 1

/**
   The many operation modes of srch.c. 

   Mode 1-4 are working modes.  Not all of them are functioning as at
   but we have plans to migrate to that.

   Just for the sake of it. mode 6-10 are assigned to 5 working
   programmers of CMU Sphinx. We don't expect too much from them. So
   let's see how it goes.

   Mode 88 is also assigned but this is just for the sake of it. 
 */

#define OPERATION_ALIGN         0 /**< (Reserved but not used) force
				     alignment mode. It is
				     questionable whether this belongs
				     in the decoder at all since it's
				     mostly used in training.
				  */
#define OPERATION_ALLPHONE      1 /**< Phoneme recognition.
				    */
#define OPERATION_GRAPH         2 /**< FSG mode, adapated from sphinx 2 
				     specify -fsg in the current decode
				     interface should work. 
				   */
#define OPERATION_FLATFWD       3 /**< Flat-lexicon decoding mode 
				     In CMU, it is well-used as a
				     research tool for acoustic and 
				     language modeling research. Its
				     shell, decode_anytopo is still
				     one of the standard executables. 				     
				   */
#define OPERATION_TST_DECODE    4 /**< Tree-lexicon decoding with
				     time-switching tree copies
				     the current default.  Or what I 
				     called the "magic wheel" search. 
				     It is a practical and useful	
				     search techniques. 				    
				   */
#define OPERATION_WST_DECODE    5 /**< (Reserved but not used)
				     Tree-lexicon decoding with
				     word-switching tree copies.  Work
				     for bigram with trigram
				     rescoring.  Not well developed
				     enough to be deployed.				     
				   */
#define OPERATION_EVANDRO_MODE  6 /**< (Reserved but not used) Dr. 
				     Evandro Gouvea is a very defensive
				     programmer. He is very clever and
				     has strong mathematical
				     background.  I would guess his
				     search code would be very solid.
				   */
#define OPERATION_DAVID_MODE    7 /**< (Reserved but not used) It is
				     not an illusion that David
				     Huggins-Daines is productive. 
				     The reason he hasn't touched 
				     the search part yet is because
				     he hasn't read Richard Bellman's
				     "Dynamic Programming" and Arthur
				     Chan's C++ implementation of 
				     arec.  He will definitely show
				     his super-fast speed in search 
				     implementation as well. 
				   */
#define OPERATION_ARTHUR_MODE   8 /**< (Reserved but not used) Arthur
				     Chan is the guy who think of this
				     search mode thing. He wrote mode
				     5. Just like plan 9.  It is quite
				     a failure.  Though, this guy is
				     not that easy-going, he must have
				     think of something this time.
				   */
#define OPERATION_YITAO_MODE    9 /**< (Reserved but not used) Yitao Sun
				     works mainly on grammar, CFG, FSG
				     and stuffs.  Likely his search will
				     also reflect his research direction. 
				   */
#define OPERATION_RAVI_MODE    10 /**< (Reserved but not used) Mosur
				     Ravishankar works out both s2 and
				     s3 He is also the original author
				     of mode 2, 3 and 4. (In practice,
				     Arthur Chan's mode 5 really
				     couldn't match mode 4 at all.) 
				     He always has a lot of
				     interesting ideas in his mind. Likely
				     it might think of interesting search
				     similar to mode 4. 
				   */
#define OPERATION_STEVE_MODE   88 /**< (Reserved but not used) Steven
				     Lee is the guy who work out the
				     a-star search for the MIT
				     segmental recognizer.  He yielded
				     to Arthur Chan and become one of
				     the developers of CMU Sphinx.
				     But his heart is still with MIT,
				     MIT SLS.  Likely he will still 
				     be happy that 88 is a very lucky
				     number in Chinese. 
				  */
#define OPERATION_DO_NOTHING 1368 /**< Do nothing mode. as it means
				     it does nothing. It is used as
				     one of the function test of the
				     search operator. 
				  */

#define OPERATION_DEBUG      1369 /**< Debug mode, it dumps the
				     internal function call in srch.c
				     layer.  ARCHAN 20050329: 1369 has
				     no meaning at all, I just love to
				     call it in that way.
				  */

#define GRAPH_STRUCT_FLAT 0
#define GRAPH_STRUCT_TST 1
#define GRAPH_STRUCT_WST 2
#define GRAPH_STRUCT_GENGRAPH 3
#define GRAPH_STRUCT_PHMM 4

#define GMM_STRUCT_CDHMM 0
#define GMM_STRUCT_SCHMM 1


#define GAUDEN_EVAL_WINDOW 8 /*Moving window length when frames are
			       considered as blocks, currently used in
			       3.0 family of tools. */

#define DFLT_UTT_SIZE 5000 /**< The default number of frames of an utterance */
#define DFLT_NUM_SEGS 200  /**< The default number of segments of an utterance */



/* \struct grp_str_t 
 */
typedef struct {
    void *graph_struct; /**< The graph structure */
    int32 graph_type;   /**< The graph type */
}grp_str_t;



/** 
    \file srch.h 
    \brief search abstraction. 

    Written at 20050510 by ARCHAN.

    Mechanism/implementation separation

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    Starting from Sphinx 3.6, the implementation of the search has
    conceptually separated into two layers.  The top layer srch.c
    defines the top level atomic function defintion (implemented as
    function pointers) that every search-like operations will share. 

    To understand what it means, consider two seemingly different
    search-like operations, alignment and decoding.  Both of them
    required 1) initialization, 2) propropagte 1 frame. 3) termniation.
    Each of these operation can well be defined as one single
    interface. 

    Some people call this type of implementation as "C-class" which I
    think is very appropiate.  Because in general, C++, Objective-C and
    D actually used the same mechanism to implement the concept
    "class".  Obviously, the actual implementation was hidden in the
    compiler in those cases so that's why so many people are confused. 
   
    Why polymorphism is important?

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    Before sphinx 3.6, maintainers (that includes me) tend to think
    that different operations would require different treatment.  The
    consequence of that is different opertations tends to have
    different implementations, styles.  Code tends to be duplicated if
    programmers think in this way.  One big problem is the fact that we
    had so called s3 slow and s3 fast and there were 3000 lines
    duplication. 

    Code duplication also tends compound. i.e. if code was duplicated
    twice, it will be duplicated four times.  That reduces
    productivitiy of the team. 

    Other reasons why srch.c is written

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    At the time when we implemented this routine, we actually didn't
    know whether mode 5 (word tree copies) will work or not.
    Therefore, letting the code of mode 4 (lucky wheel search) and mode
    5 to coexist will be the best.


    "Embedding" of multi-stage search into the dynamic programming
   
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    Another interesting part (Interesting in the sense that I would
    write a paper on this.) of the search is that we (I will say mainly
    me because this is not new at all.) realize that approximiate
    search (i.e. something like phoneme-lookahead), detail search
    (i.e. something like hard-core tree and fsm search) and high level
    rescoring using knowledge source (e.g. using LM to rescore N-best)
    could all be incorporated into the first pass search and
    potentially make the code more verstille.

    They key concept on how to do this is here: at one frame, one can
    carry out the above three operations and make the search faster
    because of 1) heuristics value obtained in the approximate search
    2) early incorporation of high-level knowledge in the rescoring stage. 

    The naming of function interfaces shows this tendency. lv1 means the
    approximate first-stage search. lv2 means the detail second-stage
    search. rescoring means the use of high-level information in
    rescoring during the search.

    The scope of what srch.c defines

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    Written at 20050510

    At the time I wrote this, we only implement mode 4 (Ravi's
    implementation in Sphinx 3.2, I usually call it "lucky wheel"
    implementation.  (See my description in srch_time_switch_tree.h),
    mode 5 (My implementation using tree copies.)  and mode 1369 (A
    debug mode of the search mechanism where only a prompt will be
    displayed and show that a function is called. Why 1369? coz I am a
    nerd. :-))

    Though only three modes of the search were written. I found it to
    be utmost important to share my imagination of what we can actually
    do using this interface of the search. In theory, the slow search
    (pre-defined as mode 3) and the fast searches (pre-defined as mode
    4 and mode 5) can be incorporated using this interface. s3align and
    s3allphone (pre-defined as mode 0 and 1) in s3.0 family can also be
    implemented in this way. 

    Applications such as keyword spotting and speaker verifcation. They
    are not defined at this point but they are possible using the
    architecture

    What limits this architecture is that it might not be able to
    implement a wide class of segmental models.  I will speculate if a
    recursive formulat can be derived for a particular type of model
    (segmental or non-segmental, HMM or non-HMM).  The current
    interface could be overloaded and allow implementation of them.
    There are definitely some types of segmental model are very hard to
    implement using this structure; e.g. MIT segmental model (pre-1999)
    where segmentation was generated by low-level information first and
    search were performed on segments. 


    A general guide-line on how to write a search implementation

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   
    1, The batch mode search operation and the on-line mode operation
    can always share code. If the implementation is duplicated, it
    shows a bad omen.

    2, Knowledge source (such as LM and finite state grammer) always
    change the graph structure. That is why srch_{set,add,delete}_lm
    was defined, if we have multiple types of knowledge
    sources. Interfaces should be added in srch.c and the search
    operation (e.g. search/srch_time_switch_tree.c) provides the actualy
    implemenation

    3, GMM computation and search can be easily separated into two
    routines. Therefore, instead of wrap it up in individual searches,
    a new set of function called gmmwrap.c is used which conform the
    interface in srch.c. 
   
    4, Mechanism such as phoneme lookahead and generally fast match are
    all similar in the sense that. They look forward a couple of frames
    and compute a heuristic score. The windows controlling mechanism
    should be coded in srch.c . The actual heuristic should be coded
    somewhere else. 

    5, grh contains the actual data structure that stores the graph. We
    didn't use WFST as a common structure because we found that it has
    certain fact we don't know at the time we implemented.

    6, Always get back to the debug mode (mode 1369) if you want to
    debug the search mechanism

    7, (V. Imp.) When in doubt, ask Arthur Chan. If he is not in CMU
    any more, brainstorm how to get him back.  He is a nice guy and has
    no problem in talking.

*/
typedef struct srch_funcs_s {
    /*
      Function pointers that perform the operations.  Every mode will
      set these pointers at the beginning of the search.
    */

    /** Initialization of the search, coz the graph type can be different */
    int (*init)(kb_t *kb, /**< Pointer of kb_t which srch_init wants to copy from */
                void* srch_struct /**< a pointer of srch_t */
        );

    /**< Un-Initialize of the search. */
    int (*uninit)(
        void* srch_struct /**< a pointer of srch_t */
        );
    /**< Begin search for one utterance */
    int (*utt_begin)(
        void* srch_struct /**< a pointer of srch_t */
        );

    /** End search for one utterance */
    int (*utt_end)(
        void* srch_struct /**< a pointer of srch_t */
        );
    /** Actual decoding operation */
    int (*decode)(
        void* srch_struct /**< a pointer of srch_t */
        );

    /** Set LM operation.  */
    int (*set_lm)(
        void* srch_struct, /**< a pointer of srch_t */
        const char *lmname /**< The LM name */
        );

    /** Add LM operation */ 
    int (*add_lm)(void* srch_struct, /**< a pointer of srch_t */
                  lm_t* lm,          /**< A new lm */
                  const char *lmname /**< The LM name */
        );

    /** Delete LM operation */
    int (*delete_lm)(void* srch_struct,  /**< a pointer of srch_t */
                     const char *lmname  /**< The LM name */
        );

    /** Read FSG operation*/
#if 0
    word_fsg_t* (*read_fsgfile)(void* srch_struct, /**< a pointer of srch_t */
                                const char* fsgname /** The fsg file name*/

        );
#endif
    /* The 4 operations that require switching during the approximate search process */
    /**< lv1 stands for approximate search. Currently not used. */

    /** Compute Approximate GMM */
    int (*gmm_compute_lv1)(void* srch_struct,  /**< a pointer of srch_t */
                           float32 *feat,      /**< The feature vector */
                           int32 frmno_lp1,    /**< The frame for the cache */
                           int32 frmno_lp2     /**< The frame for the windows */
        );


    /* The level 1 search functions are not yet fully used. Not all of them are defined nowWhen fast
       match is needed. We will need them more. 
    */
    int (*one_srch_frame_lv1)(void* srch_struct /**< a pointer of srch_t */
        );

    int (*hmm_compute_lv1)(void* srch_struct);
    int (*eval_beams_lv1)(void* srch_struct);
    int (*propagate_graph_ph_lv1)(void* srch_struct);
    int (*propagate_graph_wd_lv1)(void* srch_struct);

    /* The 4 operations that require switching during the detail search process */
    /** lv2 stands for detail search. */


    /** Compute detail (CD) GMM scores or lv2*/
    int (*gmm_compute_lv2)(void* srch_struct,  /**< a pointer of srch_t */
                           float32 **feat,      /**< A feature vector */
                           int32 time          /**< The frame we want to compute detail score */
        );


    /** A short-cut function that allows implementer could just
        implement searching for one frame without implement the
        following 4 fuctions.
    */
    int (*one_srch_frame_lv2)(void* srch_struct /**< a pointer of srch_t */
        );


    /** Compute detail (CD) HMM scores or lv2*/
    int (*hmm_compute_lv2)(void* srch_struct,  /**< a pointer of srch_t */
                           int32 frmno         /**< The frame we want to compute detail score */
        );

    /** Compute the beams*/
    int (*eval_beams_lv2)(void* srch_struct     /**< a pointer of srch_t */
        );

    /** Propagate the graph in phone level */
    int (*propagate_graph_ph_lv2)(void* srch_struct, /**< a pointer of srch_t */
                                  int32 frmno        /**< The frame no. */
        );

    /** Propagate the graph in word level */
    int (*propagate_graph_wd_lv2)(void* srch_struct,  /**< a pointer of srch_t */
                                  int32 frmno       /**< The frame no. */
        );

    /** Rescoring srch */
    int (*rescoring) (void* srch_struct,  /**< a pointer of srch_t */
                      int32 frmno         /**< The frame no. */
        );  

    int (*frame_windup) (void * srch_struct, int32 frmno);
    int (*compute_heuristic) (void * srch_struct, int32 win_efv);
    int (*shift_one_cache_frame) (void *srch_struct,int32 win_efv);
    int (*select_active_gmm) (void *srch_struct);


    /** 
        Second stage functions. They provide a generalized interface for
        different modes to generate output
    */
    /**
       Generation of hypothesis (*.hyp). Notice, displaying hypothesis is taken care by srch.c itself. 
    */
    glist_t (*gen_hyp) (void * srch_struct /**< a pointer of srch_t */
        );

    /**
       Generation of directed acyclic graph (*.lat.gz). Notice , dumping
       the dag will be taken care by srch.c. There is mode specific
       optimization.
       @return a dag which represent the word graphs. 
    */
    dag_t* (*gen_dag) (void* srch_struct, /**< a pointer of srch_t */
                       glist_t hyp
        );

    /**
       Dump vithist 
    */
    int (*dump_vithist)(void * srch_struct /**< a pointer of srch_t */
        );

    /**
       Interface of best path search. 
    */
    glist_t (*bestpath_impl)(void *srch_struct, /**< a pointer of srch_t */
                             dag_t *dag 
        );

    /**
       Interface for sphinx3 dag dumping function     
    */
    int (*dag_dump) (void * srch_struct,
                     dag_t *dag
        );

    /**
       Interface of N-best search. 
    */
    glist_t (*nbest_impl)(void *srch_struct, /**< a pointer of srch_t */
                          dag_t *dag 
        );

    /** Empty "guard" element which does nothing. */
    void *nothing;
} srch_funcs_t;

typedef struct srch_s {
    /**
     * Methods specific to a particular search mode.
     **/
    srch_funcs_t *funcs;

    grp_str_t* grh;     /**< Pointer to search specific structures */
    int op_mode;        /**< The operation mode */
    stat_t *stat;       /**< Pointer to the statistics structure */
    char *uttid;        /**< Reference to UttID */
    char *uttfile;      /**< Reference to Utterance filename (or NULL) */

    /*
      These variables control the logistic of a search operation.  The
      are global to all different search modes. 
    */
    int32 cache_win;    /**< The windows lengths of the cache for approximate search */
    int32 cache_win_strt;    /**< The start index of the window near the end of a block */

    int32 senscale;     /**< TEMPORARY VARIABLE: Senone scale */

    int32 *ascale;   /**< Same as senscale but it records the senscale for the whole sentence. 
                        The default size is 3000 frames. 
                     */
    int32 ascale_sz;       /**< Size of the ascr_scale*/
    int32 num_frm;        /**< Number of frames processed */

    int32 *segsz;   /**< Size of segments for each call */
    int32 segsz_sz;      /**< Size of segments size*/

    int32 num_segs;     /**< In one search, (i.e. between one srch_utt_begin and one srch_utt_end)
                           The number of segments the search has decoded. 
                           That also means the number of times srch_utt_decode_blk is called. 
                        */


    /* 
       Auxillary Structures for the search. 
    */
    int32 exit_id;		/**< Lattice ID for exit word (-1 if
                                 * utterance is not complete) */
    dag_t *dag;			/**< Word graph representation of completed utterance. */

    /* ARCHAN: Various pruning beams, put them together such that it looks more logical. */
    ascr_t *ascr;		  /**< Pointer to Senone and composite senone scores for one frame */
    beam_t *beam;		  /**< Pointer to Structure that wraps up parameters related to beam pruning */
    fast_gmm_t *fastgmm;    /**< Pointer to Structure that wraps up parameters for fast GMM computation */
    pl_t *pl;              /**< Pointer to Structure that wraps up parameter for phoneme look-ahead */
    adapt_am_t * adapt_am; /** Pointer to AM adaptation structure */
    kbcore_t *kbc;      /**< Pointer to the kbcore */


    FILE *matchfp;          /**< Copy of File handle for the match file */
    FILE *matchsegfp;       /**< Copy of File handle for the match segmentation file */
  
    FILE *hmmdumpfp;        /**< Copy of File handle for dumping hmms for debugging */

    /* FIXME, duplicated with fwd_dbg_t */
    int32 hmm_dump_sf;	/**< Start frame for HMMs to be dumped for debugging */
    int32 hmm_dump_ef;	/**< End frame for HMMs to be dumped for debugging */
}srch_t;

/** 
    Translate mode string (as passed in the -mode argument) to number.
    Names chosen for familiarity with Sphinx2/PocketSphinx.

    The currently valid operation modes are 

    Strings        Operation Mode(Mode Idx)
    ---------------------------------------
    allphone       OPERATION_ALLPHONE(1)

    fsg            OPERATION_GRAPH(2)

    fwdflat        OPERATION_FLATFWD(3)
    
    fwdtree        OPERATION_TST_DECODE(4)
    
    @return the mode index if it is valid, -1 if it is not.  
*/

int32 srch_mode_str_to_index(const char* mode_str);

/** Translate mode string to mode index. User need to supply an initialized 
    @return a mode string;
    @see srchmode_str_to_index
*/

char* srch_mode_index_to_str(int32 index);


/* The following are C-style method for srch structure.  In theory,
   users could used both C-style and function pointer style to access
   functionalities of the code. However, we recommend developers to use
   the C-style functions because 1) it won't scare people that match, 2)
   it is more consistent with other modules in sphinx 3. 
*/

/** Initialize the search routine, this will specify the type of search
    drivers and initialized all resouces.  It will do the following things
    
    1, Set all function pointers depends on the mode number. 

    2, Initialize parameters which the default search abstraction
    mechanism required. This currently include, cache_win,
    cache_win_start.  They control how much delay of the first level
    and second level search. Also senscale, a parameter which store
    the largest gmm score for each frame. 

    3, Initialize search-specific data structure using srch_init
    method of the search class.  That is s->srch_init will be called. 

    @return an initialized srch_t with operation mode op_mode. 
*/

srch_t* srch_init(kb_t *kb, /**< In: knowledge base */
		  int32 op_mode /**< In: operation mode of the search */
    );

/** Report the search routine */
/** using file name of the model definition and directory name to initialize */

/** Report the search structure
 */
void srch_report(srch_t* srch /**< In: a search structure */
    );

/**
 *  Begin decoding of speech for one utterance. 
 * 
 * @return SRCH_SUCCESS if succeed, SRCH_FAILURE if failed.  
 * @see srch_utt_end
 */

int32 srch_utt_begin(srch_t* srch /**< In: a search structure */
    );

/**
   Decode one block of speech and provide the implementation of the default search abstraction
*/
S3DECODER_EXPORT
int32 srch_utt_decode_blk(srch_t* srch, /**< In: a search structure */
			  float ***block_feat,  /**< In: a pointer of a two dimensional array */
			  int32 block_nfeatvec, /**< In: Number of feature vector */
			  int32 *curfrm  /**< In/Out: a pointer of the current frame index*/
    );

/**
   End decoding of speech for one utterance. 
*/
int32 srch_utt_end(srch_t* srch /**< In: a search structure */
    );

/** Wrap up the search routine*/
int32 srch_uninit(srch_t* srch /**< In: a search structure */
    );

/**
 * Get a recognition backtrace, as a list of srch_hyp_t structures.
 * You must free this with glist_free() after using it. */
glist_t srch_get_hyp(srch_t *srch /**< In: a search structure */
    );

/**
 * Get the complete set of possible hypotheses, as a word graph (DAG).
 * The dag_t returned by this function remains owned by srch_t.  Do
 * NOT attempt to free it.
 */
dag_t *srch_get_dag(srch_t *srch);


/** Dump recognition result */
void reg_result_dump (srch_t* s, /**< A search structure */
		      int32 id  /**< Utterance ID */
    );
/**
   Dump the best senone score for each frame
*/
void write_bstsenscr(FILE *fp, /**< A file pointer */
		     int32 numframe, /**< Number of frame in one recognition */
		     int32* scale    /**< Scales */
    );


/** using file name of the LM or defined lmctlfn mechanism */
S3DECODER_EXPORT
int32 srch_set_lm(srch_t* srch,  /**< A search structure */
		  const char *lmname /**< LM fie name */
    );

/** delete lm */
int32 srch_delete_lm(srch_t* srch,  /**< A search structure */
		  const char *lmname /**< LM fie name */
    );

#if 0 /*Tentative: but not yet implemented */
int32 srch_set_am(void);

/** add new am */
int32 srch_add_am(void);

/** delete am */
int32 srch_delete_am(void);

/** add new lm */
int32 srch_add_lm(void);


/** using file name of the regression class mapping or a directory name to initialize  */
int32 srch_set_mllr(void);

/** add new mllr */
int32 srch_add_mllr(void);

/** delete mllr */
int32 srch_delete_mllr(void);

/** using file name of interpolation file to initialize it */
int32 srch_set_lamdafn(void);

/** add new mllr */
int32 srch_add_lamdafn(void);

/** delete mllr */
int32 srch_delete_lamdafn(void);

/** add new words into the dictionary */
int32 srch_add_words_to_dict(void);

#endif /* End not implemented */

#ifdef __cplusplus
}
#endif


#endif /*_SRCH_H_ */