Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PhraseOrientationFeature.cpp « FF « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d51a8c290724faa2e2b007064a51ec7c1ddd7d36 (plain)
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
//
// REFERENCE
// ---------
// When using this feature, please cite:
//
// Matthias Huck, Joern Wuebker, Felix Rietig, and Hermann Ney.
// A Phrase Orientation Model for Hierarchical Machine Translation.
// In ACL 2013 Eighth Workshop on Statistical Machine Translation (WMT 2013), pages 452-463, Sofia, Bulgaria, August 2013.
//

#include "PhraseOrientationFeature.h"
#include "moses/InputFileStream.h"
#include "moses/ScoreComponentCollection.h"
#include "moses/StaticData.h"
#include "moses/Hypothesis.h"
#include "moses/ChartHypothesis.h"
#include "moses/ChartManager.h"
#include "phrase-extract/extract-ghkm/Alignment.h"
#include <boost/shared_ptr.hpp>


namespace Moses
{
size_t PhraseOrientationFeatureState::hash() const
{
  UTIL_THROW2("TODO:Haven't figure this out yet");
}

bool PhraseOrientationFeatureState::operator==(const FFState& other) const
{
  UTIL_THROW2("TODO:Haven't figure this out yet");
}

////////////////////////////////////////////////////////////////////////////////
const std::string PhraseOrientationFeature::MORIENT("M");
const std::string PhraseOrientationFeature::SORIENT("S");
const std::string PhraseOrientationFeature::DORIENT("D");


PhraseOrientationFeature::PhraseOrientationFeature(const std::string &line)
  : StatefulFeatureFunction(6, line)
  , m_glueTargetLHSStr("Q")
  , m_distinguishStates(true)
  , m_useSparseWord(false)
  , m_useSparseNT(false)
  , m_offsetR2LScores(m_numScoreComponents/2)
  , m_useTargetWordList(false)
  , m_useSourceWordList(false)
{
  VERBOSE(1, "Initializing feature " << GetScoreProducerDescription() << " ...");
  ReadParameters();
  FactorCollection &factorCollection = FactorCollection::Instance();
  m_glueTargetLHS = factorCollection.AddFactor(m_glueTargetLHSStr, true);
  VERBOSE(1, " Done." << std::endl);
}


void PhraseOrientationFeature::SetParameter(const std::string& key, const std::string& value)
{
  if (key == "glueTargetLHS") {
    m_glueTargetLHSStr = value;
  } else if (key == "distinguishStates") {
    m_distinguishStates = Scan<bool>(value);
  } else if (key == "sparseWord") {
    m_useSparseWord = Scan<bool>(value);
  } else if (key == "sparseNT") {
    m_useSparseNT = Scan<bool>(value);
  } else if (key == "targetWordList") {
    m_filenameTargetWordList = value;
  } else if (key == "sourceWordList") {
    m_filenameSourceWordList = value;
  } else {
    StatefulFeatureFunction::SetParameter(key, value);
  }
}


void PhraseOrientationFeature::Load()
{
  if ( !m_filenameTargetWordList.empty() ) {
    LoadWordList(m_filenameTargetWordList,m_targetWordList);
    m_useTargetWordList = true;
  }
  if ( !m_filenameSourceWordList.empty() ) {
    LoadWordList(m_filenameSourceWordList,m_sourceWordList);
    m_useSourceWordList = true;
  }
}


void PhraseOrientationFeature::LoadWordList(const std::string& filename,
    boost::unordered_set<const Factor*>& list)
{
  FEATUREVERBOSE(2, "Loading word list from file " << filename << std::endl);
  FactorCollection &factorCollection = FactorCollection::Instance();
  list.clear();
  std::string line;
  InputFileStream inFile(filename);

  while (getline(inFile, line)) {
    const Factor *factor = factorCollection.AddFactor(line, false);
    list.insert(factor);
  }

  inFile.Close();
}


void PhraseOrientationFeature::EvaluateInIsolation(const Phrase &source,
    const TargetPhrase &targetPhrase,
    ScoreComponentCollection &scoreBreakdown,
    ScoreComponentCollection &estimatedScores) const
{
  targetPhrase.SetRuleSource(source);

  if (const PhraseProperty *property = targetPhrase.GetProperty("Orientation")) {
    const OrientationPhraseProperty *orientationPhraseProperty = static_cast<const OrientationPhraseProperty*>(property);
    LookaheadScore(orientationPhraseProperty, scoreBreakdown);
  } else {
    // abort with error message if the phrase does not translate an unknown word
    UTIL_THROW_IF2(!targetPhrase.GetWord(0).IsOOV(), GetScoreProducerDescription()
                   << ": Missing Orientation property. "
                   << "Please check phrase table and glue rules.");
  }

  IFFEATUREVERBOSE(2) {
    FEATUREVERBOSE(2, "BEGIN========EvaluateInIsolation========" << std::endl);
    FEATUREVERBOSE(2, source << std::endl);
    FEATUREVERBOSE(2, targetPhrase << std::endl);

    for (AlignmentInfo::const_iterator it=targetPhrase.GetAlignTerm().begin();
         it!=targetPhrase.GetAlignTerm().end(); ++it) {
      FEATUREVERBOSE(2, "alignTerm " << it->first << " " << it->second << std::endl);
    }

    for (AlignmentInfo::const_iterator it=targetPhrase.GetAlignNonTerm().begin();
         it!=targetPhrase.GetAlignNonTerm().end(); ++it) {
      FEATUREVERBOSE(2, "alignNonTerm " << it->first << " " << it->second << std::endl);
    }
  }


  if (targetPhrase.GetAlignNonTerm().GetSize() != 0) {

    // Initialize phrase orientation scoring object
    MosesTraining::Syntax::GHKM::PhraseOrientation phraseOrientation(source.GetSize(), targetPhrase.GetSize(),
        targetPhrase.GetAlignTerm(), targetPhrase.GetAlignNonTerm());

    PhraseOrientationFeature::ReoClassData* reoClassData = new PhraseOrientationFeature::ReoClassData();

    // Determine orientation classes of non-terminals

    const Factor* targetPhraseLHS = targetPhrase.GetTargetLHS()[0];

    for (AlignmentInfo::const_iterator it=targetPhrase.GetAlignNonTerm().begin();
         it!=targetPhrase.GetAlignNonTerm().end(); ++it) {
      size_t sourceIndex = it->first;
      size_t targetIndex = it->second;

      // LEFT-TO-RIGHT DIRECTION

      MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS l2rOrientation = phraseOrientation.GetOrientationInfo(sourceIndex,sourceIndex,MosesTraining::Syntax::GHKM::PhraseOrientation::REO_DIR_L2R);

      if ( ((targetIndex == 0) || !phraseOrientation.TargetSpanIsAligned(0,targetIndex)) // boundary non-terminal in rule-initial position (left boundary)
           && (targetPhraseLHS != m_glueTargetLHS) ) { // and not glue rule

        FEATUREVERBOSE(3, "Left boundary: targetIndex== " << targetIndex);
        if (targetIndex != 0) {
          FEATUREVERBOSE2(3, " (!=0)");
        }
        FEATUREVERBOSE2(3, std::endl);

        reoClassData->firstNonTerminalPreviousSourceSpanIsAligned = ( (sourceIndex > 0) && phraseOrientation.SourceSpanIsAligned(0,sourceIndex-1) );
        reoClassData->firstNonTerminalFollowingSourceSpanIsAligned = ( (sourceIndex < source.GetSize()-1) && phraseOrientation.SourceSpanIsAligned(sourceIndex,source.GetSize()-1) );

        FEATUREVERBOSE(4, "firstNonTerminalPreviousSourceSpanIsAligned== " << reoClassData->firstNonTerminalPreviousSourceSpanIsAligned << std::endl);
        FEATUREVERBOSE(4, "firstNonTerminalFollowingSourceSpanIsAligned== " << reoClassData->firstNonTerminalFollowingSourceSpanIsAligned << std::endl;);

        if (reoClassData->firstNonTerminalPreviousSourceSpanIsAligned &&
            reoClassData->firstNonTerminalFollowingSourceSpanIsAligned) {
          // discontinuous
          l2rOrientation = MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT;
        } else {
          reoClassData->firstNonTerminalIsBoundary = true;
        }
      }

      reoClassData->nonTerminalReoClassL2R.push_back(l2rOrientation);

      // RIGHT-TO-LEFT DIRECTION

      MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS r2lOrientation = phraseOrientation.GetOrientationInfo(sourceIndex,sourceIndex,MosesTraining::Syntax::GHKM::PhraseOrientation::REO_DIR_R2L);

      if ( ((targetIndex == targetPhrase.GetSize()-1) || !phraseOrientation.TargetSpanIsAligned(targetIndex,targetPhrase.GetSize()-1)) // boundary non-terminal in rule-final position (right boundary)
           && (targetPhraseLHS != m_glueTargetLHS) ) { // and not glue rule

        FEATUREVERBOSE(3, "Right boundary: targetIndex== " << targetIndex);
        if (targetIndex != targetPhrase.GetSize()-1) {
          FEATUREVERBOSE2(3, " (!=targetPhrase.GetSize()-1)");
        }
        FEATUREVERBOSE2(3, std::endl);

        reoClassData->lastNonTerminalPreviousSourceSpanIsAligned = ( (sourceIndex > 0) && phraseOrientation.SourceSpanIsAligned(0,sourceIndex-1) );
        reoClassData->lastNonTerminalFollowingSourceSpanIsAligned = ( (sourceIndex < source.GetSize()-1) && phraseOrientation.SourceSpanIsAligned(sourceIndex,source.GetSize()-1) );

        FEATUREVERBOSE(4, "lastNonTerminalPreviousSourceSpanIsAligned== " << reoClassData->lastNonTerminalPreviousSourceSpanIsAligned << std::endl);
        FEATUREVERBOSE(4, "lastNonTerminalFollowingSourceSpanIsAligned== " << reoClassData->lastNonTerminalFollowingSourceSpanIsAligned << std::endl;);

        if (reoClassData->lastNonTerminalPreviousSourceSpanIsAligned &&
            reoClassData->lastNonTerminalFollowingSourceSpanIsAligned) {
          // discontinuous
          r2lOrientation = MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT;
        } else {
          reoClassData->lastNonTerminalIsBoundary = true;
        }
      }

      reoClassData->nonTerminalReoClassR2L.push_back(r2lOrientation);
    }

    bool inserted = targetPhrase.SetData("Orientation", boost::shared_ptr<void>(reoClassData));
    UTIL_THROW_IF2(!inserted, GetScoreProducerDescription()
                   << ": Insertion of orientation data attempted repeatedly. ");
  }
  FEATUREVERBOSE(2, "END========EvaluateInIsolation========" << std::endl);
}


void PhraseOrientationFeature::LookaheadScore(const OrientationPhraseProperty *orientationPhraseProperty,
    ScoreComponentCollection &scoreBreakdown,
    bool subtract) const
{
  size_t ffScoreIndex = m_index;

  std::vector<float> scoresL2R;
  scoresL2R.push_back( TransformScore(orientationPhraseProperty->GetLeftToRightProbabilityMono()) );
  scoresL2R.push_back( TransformScore(orientationPhraseProperty->GetLeftToRightProbabilitySwap()) );
  scoresL2R.push_back( TransformScore(orientationPhraseProperty->GetLeftToRightProbabilityDiscontinuous()) );
  size_t heuristicScoreIndexL2R = GetHeuristicScoreIndex(scoresL2R, 0);

  if (subtract) {
    scoreBreakdown.PlusEquals(ffScoreIndex+heuristicScoreIndexL2R,
                              -scoresL2R[heuristicScoreIndexL2R]);
  } else {
    scoreBreakdown.PlusEquals(ffScoreIndex+heuristicScoreIndexL2R,
                              scoresL2R[heuristicScoreIndexL2R]);
  }

  std::vector<float> scoresR2L;
  scoresR2L.push_back( TransformScore(orientationPhraseProperty->GetRightToLeftProbabilityMono()) );
  scoresR2L.push_back( TransformScore(orientationPhraseProperty->GetRightToLeftProbabilitySwap()) );
  scoresR2L.push_back( TransformScore(orientationPhraseProperty->GetRightToLeftProbabilityDiscontinuous()) );
  size_t heuristicScoreIndexR2L = GetHeuristicScoreIndex(scoresR2L, m_offsetR2LScores);

  if (subtract) {
    scoreBreakdown.PlusEquals(ffScoreIndex+m_offsetR2LScores+heuristicScoreIndexR2L,
                              -scoresR2L[heuristicScoreIndexR2L]);
  } else {
    scoreBreakdown.PlusEquals(ffScoreIndex+m_offsetR2LScores+heuristicScoreIndexR2L,
                              scoresR2L[heuristicScoreIndexR2L]);
  }
}


FFState* PhraseOrientationFeature::EvaluateWhenApplied(
  const ChartHypothesis& hypo,
  int featureID, // used to index the state in the previous hypotheses
  ScoreComponentCollection* accumulator) const
{
  // Dense scores
  std::vector<float> newScores(m_numScoreComponents,0);

  // Read Orientation property
  const TargetPhrase &currTarPhr = hypo.GetCurrTargetPhrase();
  const Phrase *currSrcPhr = currTarPhr.GetRuleSource();

  // State: used to propagate orientation probabilities in case of boundary non-terminals
  PhraseOrientationFeatureState *state = new PhraseOrientationFeatureState(m_distinguishStates,m_useSparseWord,m_useSparseNT);

  IFFEATUREVERBOSE(2) {
    FEATUREVERBOSE(2, *currSrcPhr << std::endl);
    FEATUREVERBOSE(2, currTarPhr << std::endl);

    for (AlignmentInfo::const_iterator it=currTarPhr.GetAlignTerm().begin();
         it!=currTarPhr.GetAlignTerm().end(); ++it) {
      FEATUREVERBOSE(2, "alignTerm " << it->first << " " << it->second << std::endl);
    }

    for (AlignmentInfo::const_iterator it=currTarPhr.GetAlignNonTerm().begin();
         it!=currTarPhr.GetAlignNonTerm().end(); ++it) {
      FEATUREVERBOSE(2, "alignNonTerm " << it->first << " " << it->second << std::endl);
    }
  }

  // Retrieve phrase orientation scoring object
  const PhraseOrientationFeature::ReoClassData *reoClassData = NULL;
  if (currTarPhr.GetAlignNonTerm().GetSize() != 0) {
    const boost::shared_ptr<void> data = currTarPhr.GetData("Orientation");
    UTIL_THROW_IF2(!data, GetScoreProducerDescription()
                   << ": Orientation data not set in target phrase. ");
    reoClassData = static_cast<const PhraseOrientationFeature::ReoClassData*>( data.get() );
  }

  // Get index map for underlying hypotheses
  const AlignmentInfo::NonTermIndexMap &nonTermIndexMap =
    currTarPhr.GetAlignNonTerm().GetNonTermIndexMap();

  // Retrieve non-terminals orientation classes & score orientations

  size_t nNT = 0;

  for (AlignmentInfo::const_iterator it=currTarPhr.GetAlignNonTerm().begin();
       it!=currTarPhr.GetAlignNonTerm().end(); ++it) {
    size_t sourceIndex = it->first;
    size_t targetIndex = it->second;
    size_t nonTermIndex = nonTermIndexMap[targetIndex];

    FEATUREVERBOSE(2, "Scoring nonTermIndex== " << nonTermIndex << " targetIndex== " << targetIndex << " sourceIndex== " << sourceIndex << std::endl);

    // consult subderivation
    const ChartHypothesis *prevHypo = hypo.GetPrevHypo(nonTermIndex);
    const TargetPhrase &prevTarPhr = prevHypo->GetCurrTargetPhrase();
    const Factor* prevTarPhrLHS = prevTarPhr.GetTargetLHS()[0];

    if (const PhraseProperty *property = prevTarPhr.GetProperty("Orientation")) {
      const OrientationPhraseProperty *orientationPhraseProperty = static_cast<const OrientationPhraseProperty*>(property);

      FEATUREVERBOSE(5, "orientationPhraseProperty: "
                     << "L2R_Mono "    << orientationPhraseProperty->GetLeftToRightProbabilityMono()
                     << " L2R_Swap "   << orientationPhraseProperty->GetLeftToRightProbabilitySwap()
                     << " L2R_Dright " << orientationPhraseProperty->GetLeftToRightProbabilityDright()
                     << " L2R_Dleft "  << orientationPhraseProperty->GetLeftToRightProbabilityDleft()
                     << " R2L_Mono "   << orientationPhraseProperty->GetRightToLeftProbabilityMono()
                     << " R2L_Swap "   << orientationPhraseProperty->GetRightToLeftProbabilitySwap()
                     << " R2L_Dright " << orientationPhraseProperty->GetRightToLeftProbabilityDright()
                     << " R2L_Dleft "  << orientationPhraseProperty->GetRightToLeftProbabilityDleft()
                     << std::endl);

      LookaheadScore(orientationPhraseProperty, *accumulator, true);

      const PhraseOrientationFeatureState* prevState =
        static_cast<const PhraseOrientationFeatureState*>(prevHypo->GetFFState(featureID));


      // LEFT-TO-RIGHT DIRECTION

      MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS l2rOrientation = reoClassData->nonTerminalReoClassL2R[nNT];

      IFFEATUREVERBOSE(2) {
        FEATUREVERBOSE(2, "l2rOrientation ");
        switch (l2rOrientation) {
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_LEFT:
          FEATUREVERBOSE2(2, "mono" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_RIGHT:
          FEATUREVERBOSE2(2, "swap" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT:
          FEATUREVERBOSE2(2, "dleft" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DRIGHT:
          FEATUREVERBOSE2(2, "dright" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN:
          // modelType == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_MSLR
          FEATUREVERBOSE2(2, "unknown->dleft" << std::endl);
          break;
        default:
          UTIL_THROW2(GetScoreProducerDescription()
                      << ": Unsupported orientation type.");
          break;
        }
      }

      if ( (nNT == 0) && reoClassData->firstNonTerminalIsBoundary ) {
        // delay left-to-right scoring

        FEATUREVERBOSE(3, "Delaying left-to-right scoring" << std::endl);

        std::bitset<3> possibleFutureOrientationsL2R(0x7);
        possibleFutureOrientationsL2R[0] = !reoClassData->firstNonTerminalPreviousSourceSpanIsAligned;
        possibleFutureOrientationsL2R[1] = !reoClassData->firstNonTerminalFollowingSourceSpanIsAligned;

        // add heuristic scores

        std::vector<float> scoresL2R;
        scoresL2R.push_back( TransformScore(orientationPhraseProperty->GetLeftToRightProbabilityMono()) );
        scoresL2R.push_back( TransformScore(orientationPhraseProperty->GetLeftToRightProbabilitySwap()) );
        scoresL2R.push_back( TransformScore(orientationPhraseProperty->GetLeftToRightProbabilityDiscontinuous()) );

        size_t heuristicScoreIndexL2R = GetHeuristicScoreIndex(scoresL2R, 0, possibleFutureOrientationsL2R);

        newScores[heuristicScoreIndexL2R] += scoresL2R[heuristicScoreIndexL2R];
        state->SetLeftBoundaryL2R(scoresL2R, heuristicScoreIndexL2R, possibleFutureOrientationsL2R, prevTarPhrLHS, prevState);

        if ( (possibleFutureOrientationsL2R & prevState->m_leftBoundaryNonTerminalL2RPossibleFutureOrientations) == 0x4 ) {
          // recursive: discontinuous orientation
          FEATUREVERBOSE(5, "previous state: L2R discontinuous orientation "
                         << possibleFutureOrientationsL2R << " & " << prevState->m_leftBoundaryNonTerminalL2RPossibleFutureOrientations
                         << " = " << (possibleFutureOrientationsL2R & prevState->m_leftBoundaryNonTerminalL2RPossibleFutureOrientations)
                         << std::endl);
          LeftBoundaryL2RScoreRecursive(featureID, prevState, 0x4, newScores, accumulator);
          state->m_leftBoundaryRecursionGuard = true; // prevent subderivation from being scored recursively multiple times
        }

      } else {

        if ( l2rOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_LEFT ) {

          newScores[0] += TransformScore(orientationPhraseProperty->GetLeftToRightProbabilityMono());
          // if sub-derivation has left-boundary non-terminal:
          // add recursive actual score of boundary non-terminal from subderivation
          LeftBoundaryL2RScoreRecursive(featureID, prevState, 0x1, newScores, accumulator);

        } else if ( l2rOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_RIGHT ) {

          newScores[1] += TransformScore(orientationPhraseProperty->GetLeftToRightProbabilitySwap());
          // if sub-derivation has left-boundary non-terminal:
          // add recursive actual score of boundary non-terminal from subderivation
          LeftBoundaryL2RScoreRecursive(featureID, prevState, 0x2, newScores, accumulator);

        } else if ( ( l2rOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT ) ||
                    ( l2rOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DRIGHT ) ||
                    ( l2rOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN ) ) {

          newScores[2] += TransformScore(orientationPhraseProperty->GetLeftToRightProbabilityDiscontinuous());
          // if sub-derivation has left-boundary non-terminal:
          // add recursive actual score of boundary non-terminal from subderivation
          LeftBoundaryL2RScoreRecursive(featureID, prevState, 0x4, newScores, accumulator);

        } else {

          UTIL_THROW2(GetScoreProducerDescription()
                      << ": Unsupported orientation type.");
        }

        // sparse scores
        if ( m_useSparseWord ) {
          SparseWordL2RScore(prevHypo,accumulator,ToString(l2rOrientation));
        }
        if ( m_useSparseNT ) {
          SparseNonTerminalL2RScore(prevTarPhrLHS,accumulator,ToString(l2rOrientation));
        }
      }


      // RIGHT-TO-LEFT DIRECTION

      MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS r2lOrientation = reoClassData->nonTerminalReoClassR2L[nNT];

      IFFEATUREVERBOSE(2) {
        FEATUREVERBOSE(2, "r2lOrientation ");
        switch (r2lOrientation) {
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_LEFT:
          FEATUREVERBOSE2(2, "mono" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_RIGHT:
          FEATUREVERBOSE2(2, "swap" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT:
          FEATUREVERBOSE2(2, "dleft" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DRIGHT:
          FEATUREVERBOSE2(2, "dright" << std::endl);
          break;
        case MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN:
          // modelType == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_MSLR
          FEATUREVERBOSE2(2, "unknown->dleft" << std::endl);
          break;
        default:
          UTIL_THROW2(GetScoreProducerDescription()
                      << ": Unsupported orientation type.");
          break;
        }
      }

      if ( (nNT == currTarPhr.GetAlignNonTerm().GetSize()-1) && reoClassData->lastNonTerminalIsBoundary ) {
        // delay right-to-left scoring

        FEATUREVERBOSE(3, "Delaying right-to-left scoring" << std::endl);

        std::bitset<3> possibleFutureOrientationsR2L(0x7);
        possibleFutureOrientationsR2L[0] = !reoClassData->lastNonTerminalFollowingSourceSpanIsAligned;
        possibleFutureOrientationsR2L[1] = !reoClassData->lastNonTerminalPreviousSourceSpanIsAligned;

        // add heuristic scores

        std::vector<float> scoresR2L;
        scoresR2L.push_back( TransformScore(orientationPhraseProperty->GetRightToLeftProbabilityMono()) );
        scoresR2L.push_back( TransformScore(orientationPhraseProperty->GetRightToLeftProbabilitySwap()) );
        scoresR2L.push_back( TransformScore(orientationPhraseProperty->GetRightToLeftProbabilityDiscontinuous()) );

        size_t heuristicScoreIndexR2L = GetHeuristicScoreIndex(scoresR2L, m_offsetR2LScores, possibleFutureOrientationsR2L);

        newScores[m_offsetR2LScores+heuristicScoreIndexR2L] += scoresR2L[heuristicScoreIndexR2L];
        state->SetRightBoundaryR2L(scoresR2L, heuristicScoreIndexR2L, possibleFutureOrientationsR2L, prevTarPhrLHS, prevState);

        if ( (possibleFutureOrientationsR2L & prevState->m_rightBoundaryNonTerminalR2LPossibleFutureOrientations) == 0x4 ) {
          // recursive: discontinuous orientation
          FEATUREVERBOSE(5, "previous state: R2L discontinuous orientation "
                         << possibleFutureOrientationsR2L << " & " << prevState->m_rightBoundaryNonTerminalR2LPossibleFutureOrientations
                         << " = " << (possibleFutureOrientationsR2L & prevState->m_rightBoundaryNonTerminalR2LPossibleFutureOrientations)
                         << std::endl);
          RightBoundaryR2LScoreRecursive(featureID, prevState, 0x4, newScores, accumulator);
          state->m_rightBoundaryRecursionGuard = true; // prevent subderivation from being scored recursively multiple times
        }

      } else {

        if ( r2lOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_LEFT ) {

          newScores[m_offsetR2LScores+0] += TransformScore(orientationPhraseProperty->GetRightToLeftProbabilityMono());
          // if sub-derivation has right-boundary non-terminal:
          // add recursive actual score of boundary non-terminal from subderivation
          RightBoundaryR2LScoreRecursive(featureID, prevState, 0x1, newScores, accumulator);

        } else if ( r2lOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_RIGHT ) {

          newScores[m_offsetR2LScores+1] += TransformScore(orientationPhraseProperty->GetRightToLeftProbabilitySwap());
          // if sub-derivation has right-boundary non-terminal:
          // add recursive actual score of boundary non-terminal from subderivation
          RightBoundaryR2LScoreRecursive(featureID, prevState, 0x2, newScores, accumulator);

        } else if ( ( r2lOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT ) ||
                    ( r2lOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DRIGHT ) ||
                    ( r2lOrientation == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN ) ) {

          newScores[m_offsetR2LScores+2] += TransformScore(orientationPhraseProperty->GetRightToLeftProbabilityDiscontinuous());
          // if sub-derivation has right-boundary non-terminal:
          // add recursive actual score of boundary non-terminal from subderivation
          RightBoundaryR2LScoreRecursive(featureID, prevState, 0x4, newScores, accumulator);

        } else {

          UTIL_THROW2(GetScoreProducerDescription()
                      << ": Unsupported orientation type.");
        }

        // sparse scores
        if ( m_useSparseWord ) {
          SparseWordR2LScore(prevHypo,accumulator,ToString(r2lOrientation));
        }
        if ( m_useSparseNT ) {
          SparseNonTerminalR2LScore(prevTarPhrLHS,accumulator,ToString(r2lOrientation));
        }
      }

    } else {
      // abort with error message if the phrase does not translate an unknown word
      UTIL_THROW_IF2(!prevTarPhr.GetWord(0).IsOOV(), GetScoreProducerDescription()
                     << ": Missing Orientation property. "
                     << "Please check phrase table and glue rules.");
    }

    ++nNT;
  }

  accumulator->PlusEquals(this, newScores);

  return state;
}


size_t PhraseOrientationFeature::GetHeuristicScoreIndex(const std::vector<float>& scores,
    size_t weightsVectorOffset,
    const std::bitset<3> possibleFutureOrientations) const
{
  if (m_weightsVector.empty()) {
    m_weightsVector = StaticData::Instance().GetAllWeights().GetScoresForProducer(this);
  }
  std::vector<float> weightedScores;
  for ( size_t i=0; i<3; ++i ) {
    weightedScores.push_back( m_weightsVector[weightsVectorOffset+i] * scores[i] );
  }

  size_t heuristicScoreIndex = 0;
  for (size_t i=1; i<3; ++i) {
    if (possibleFutureOrientations[i]) {
      if (weightedScores[i] > weightedScores[heuristicScoreIndex]) {
        heuristicScoreIndex = i;
      }
    }
  }

  IFFEATUREVERBOSE(5) {
    FEATUREVERBOSE(5, "Heuristic score computation: "
                   << "heuristicScoreIndex== " << heuristicScoreIndex);
    for (size_t i=0; i<3; ++i)
      FEATUREVERBOSE2(5, " m_weightsVector[" << weightsVectorOffset+i << "]== " << m_weightsVector[weightsVectorOffset+i]);
    for (size_t i=0; i<3; ++i)
      FEATUREVERBOSE2(5, " scores[" << i << "]== " << scores[i]);
    for (size_t i=0; i<3; ++i)
      FEATUREVERBOSE2(5, " weightedScores[" << i << "]== " << weightedScores[i]);
    for (size_t i=0; i<3; ++i)
      FEATUREVERBOSE2(5, " possibleFutureOrientations[" << i << "]== " << possibleFutureOrientations[i]);
    if ( possibleFutureOrientations == 0x7 ) {
      FEATUREVERBOSE2(5, " (all orientations possible)");
    }
    FEATUREVERBOSE2(5, std::endl);
  }

  return heuristicScoreIndex;
}


void PhraseOrientationFeature::LeftBoundaryL2RScoreRecursive(int featureID,
    const PhraseOrientationFeatureState *state,
    const std::bitset<3> orientation,
    std::vector<float>& newScores,
    ScoreComponentCollection* scoreBreakdown) const
// TODO: passing both newScores and scoreBreakdown seems redundant (scoreBreakdown needed for sparse scores)
{
  if (state->m_leftBoundaryIsSet) {
    const std::string* recursiveOrientationString;

    // subtract heuristic score from subderivation
    newScores[state->m_leftBoundaryNonTerminalL2RHeuristicScoreIndex] -= state->m_leftBoundaryNonTerminalL2RScores[state->m_leftBoundaryNonTerminalL2RHeuristicScoreIndex];

    // add actual score
    std::bitset<3> recursiveOrientation = orientation;
    if ( (orientation == 0x4) || (orientation == 0x0) ) {
      // discontinuous
      recursiveOrientationString = &DORIENT;
      newScores[2] += state->GetLeftBoundaryL2RScoreDiscontinuous();
    } else {
      recursiveOrientation &= state->m_leftBoundaryNonTerminalL2RPossibleFutureOrientations;
      if ( recursiveOrientation == 0x1 ) {
        // monotone
        recursiveOrientationString = &MORIENT;
        newScores[0] += state->GetLeftBoundaryL2RScoreMono();
      } else if ( recursiveOrientation == 0x2 ) {
        // swap
        recursiveOrientationString = &SORIENT;
        newScores[1] += state->GetLeftBoundaryL2RScoreSwap();
      } else if ( recursiveOrientation == 0x4 ) {
        // discontinuous
        recursiveOrientationString = &DORIENT;
        newScores[2] += state->GetLeftBoundaryL2RScoreDiscontinuous();
      } else if ( recursiveOrientation == 0x0 ) {
        // discontinuous
        recursiveOrientationString = &DORIENT;
        newScores[2] += state->GetLeftBoundaryL2RScoreDiscontinuous();
      } else {
        UTIL_THROW2(GetScoreProducerDescription()
                    << ": Error in recursive scoring.");
      }
    }

    if ( m_useSparseNT ) {
      SparseNonTerminalL2RScore(state->m_leftBoundaryNonTerminalSymbol,scoreBreakdown,recursiveOrientationString);
    }

    FEATUREVERBOSE(6, "Left boundary recursion: " << orientation << " & " << state->m_leftBoundaryNonTerminalL2RPossibleFutureOrientations << " = " << recursiveOrientation
                   << " --- Subtracted heuristic score: " << state->m_leftBoundaryNonTerminalL2RScores[state->m_leftBoundaryNonTerminalL2RHeuristicScoreIndex] << std::endl);

    if (!state->m_leftBoundaryRecursionGuard) {
      // recursive call
      const PhraseOrientationFeatureState* prevState = state->m_leftBoundaryPrevState;
      LeftBoundaryL2RScoreRecursive(featureID, prevState, recursiveOrientation, newScores, scoreBreakdown);
    } else {
      FEATUREVERBOSE(6, "m_leftBoundaryRecursionGuard" << std::endl);
    }
  }
}


void PhraseOrientationFeature::RightBoundaryR2LScoreRecursive(int featureID,
    const PhraseOrientationFeatureState *state,
    const std::bitset<3> orientation,
    std::vector<float>& newScores,
    ScoreComponentCollection* scoreBreakdown) const
// TODO: passing both newScores and scoreBreakdown seems redundant (scoreBreakdown needed for sparse scores)
{
  if (state->m_rightBoundaryIsSet) {
    const std::string* recursiveOrientationString;

    // subtract heuristic score from subderivation
    newScores[m_offsetR2LScores+state->m_rightBoundaryNonTerminalR2LHeuristicScoreIndex] -= state->m_rightBoundaryNonTerminalR2LScores[state->m_rightBoundaryNonTerminalR2LHeuristicScoreIndex];

    // add actual score
    std::bitset<3> recursiveOrientation = orientation;
    if ( (orientation == 0x4) || (orientation == 0x0) ) {
      // discontinuous
      recursiveOrientationString = &DORIENT;
      newScores[m_offsetR2LScores+2] += state->GetRightBoundaryR2LScoreDiscontinuous();
    } else {
      recursiveOrientation &= state->m_rightBoundaryNonTerminalR2LPossibleFutureOrientations;
      if ( recursiveOrientation == 0x1 ) {
        // monotone
        recursiveOrientationString = &MORIENT;
        newScores[m_offsetR2LScores+0] += state->GetRightBoundaryR2LScoreMono();
      } else if ( recursiveOrientation == 0x2 ) {
        // swap
        recursiveOrientationString = &SORIENT;
        newScores[m_offsetR2LScores+1] += state->GetRightBoundaryR2LScoreSwap();
      } else if ( recursiveOrientation == 0x4 ) {
        // discontinuous
        recursiveOrientationString = &DORIENT;
        newScores[m_offsetR2LScores+2] += state->GetRightBoundaryR2LScoreDiscontinuous();
      } else if ( recursiveOrientation == 0x0 ) {
        // discontinuous
        recursiveOrientationString = &DORIENT;
        newScores[m_offsetR2LScores+2] += state->GetRightBoundaryR2LScoreDiscontinuous();
      } else {
        UTIL_THROW2(GetScoreProducerDescription()
                    << ": Error in recursive scoring.");
      }
    }

    if ( m_useSparseNT ) {
      SparseNonTerminalR2LScore(state->m_rightBoundaryNonTerminalSymbol,scoreBreakdown,recursiveOrientationString);
    }

    FEATUREVERBOSE(6, "Right boundary recursion: " << orientation << " & " << state->m_rightBoundaryNonTerminalR2LPossibleFutureOrientations << " = " << recursiveOrientation
                   << " --- Subtracted heuristic score: " << state->m_rightBoundaryNonTerminalR2LScores[state->m_rightBoundaryNonTerminalR2LHeuristicScoreIndex] << std::endl);

    if (!state->m_rightBoundaryRecursionGuard) {
      // recursive call
      const PhraseOrientationFeatureState* prevState = state->m_rightBoundaryPrevState;
      RightBoundaryR2LScoreRecursive(featureID, prevState, recursiveOrientation, newScores, scoreBreakdown);
    } else {
      FEATUREVERBOSE(6, "m_rightBoundaryRecursionGuard" << std::endl);
    }
  }
}


void PhraseOrientationFeature::SparseWordL2RScore(const ChartHypothesis* hypo,
    ScoreComponentCollection* scoreBreakdown,
    const std::string* o) const
{
  // target word

  const ChartHypothesis* currHypo = hypo;
  const TargetPhrase* targetPhrase = &currHypo->GetCurrTargetPhrase();
  const Word* targetWord = &targetPhrase->GetWord(0);

  // TODO: boundary words in the feature state?
  while ( targetWord->IsNonTerminal() ) {
    const AlignmentInfo::NonTermIndexMap &nonTermIndexMap =
      targetPhrase->GetAlignNonTerm().GetNonTermIndexMap();
    size_t nonTermIndex = nonTermIndexMap[0];
    currHypo = currHypo->GetPrevHypo(nonTermIndex);
    targetPhrase = &currHypo->GetCurrTargetPhrase();
    targetWord = &targetPhrase->GetWord(0);
  }

  const std::string& targetWordString = (*targetWord)[0]->GetString().as_string();
  if (targetWordString != "<s>" && targetWordString != "</s>") {
    if ( !m_useTargetWordList || m_targetWordList.find((*targetWord)[0]) != m_targetWordList.end() ) {
      scoreBreakdown->PlusEquals(this,
                                 "L2R"+*o+"_tw_"+targetWordString,
                                 1);
      FEATUREVERBOSE(3, "Sparse: L2R"+*o+"_tw_"+targetWordString << std::endl);
    } else {
      scoreBreakdown->PlusEquals(this,
                                 "L2R"+*o+"_tw_OTHER",
                                 1);
      FEATUREVERBOSE(3, "Sparse: L2R"+*o+"_tw_OTHER" << std::endl);
    }
  }

  // source word

  Range sourceSpan = hypo->GetCurrSourceRange();
  const InputType& input = hypo->GetManager().GetSource();
  const Sentence& sourceSentence = static_cast<const Sentence&>(input);
  const Word& sourceWord = sourceSentence.GetWord(sourceSpan.GetStartPos());

  const std::string& sourceWordString = sourceWord[0]->GetString().as_string();
  if (sourceWordString != "<s>" && sourceWordString != "</s>") {
    if ( !m_useSourceWordList || m_sourceWordList.find(sourceWord[0]) != m_sourceWordList.end() ) {
      scoreBreakdown->PlusEquals(this,
                                 "L2R"+*o+"_sw_"+sourceWordString,
                                 1);
      FEATUREVERBOSE(3, "Sparse: L2R"+*o+"_sw_"+sourceWordString << std::endl);
    } else {
      scoreBreakdown->PlusEquals(this,
                                 "L2R"+*o+"_sw_OTHER",
                                 1);
      FEATUREVERBOSE(3, "Sparse: L2R"+*o+"_sw_OTHER" << std::endl);
    }
  }
}


void PhraseOrientationFeature::SparseWordR2LScore(const ChartHypothesis* hypo,
    ScoreComponentCollection* scoreBreakdown,
    const std::string* o) const
{
  // target word

  const ChartHypothesis* currHypo = hypo;
  const TargetPhrase* targetPhrase = &currHypo->GetCurrTargetPhrase();
  const Word* targetWord = &targetPhrase->GetWord(targetPhrase->GetSize()-1);

  // TODO: boundary words in the feature state?
  while ( targetWord->IsNonTerminal() ) {
    const AlignmentInfo::NonTermIndexMap &nonTermIndexMap =
      targetPhrase->GetAlignNonTerm().GetNonTermIndexMap();
    size_t nonTermIndex = nonTermIndexMap[targetPhrase->GetSize()-1];
    currHypo = currHypo->GetPrevHypo(nonTermIndex);
    targetPhrase = &currHypo->GetCurrTargetPhrase();
    targetWord = &targetPhrase->GetWord(targetPhrase->GetSize()-1);
  }

  const std::string& targetWordString = (*targetWord)[0]->GetString().as_string();
  if (targetWordString != "<s>" && targetWordString != "</s>") {
    if ( !m_useTargetWordList || m_targetWordList.find((*targetWord)[0]) != m_targetWordList.end() ) {
      scoreBreakdown->PlusEquals(this,
                                 "R2L"+*o+"_tw_"+targetWordString,
                                 1);
      FEATUREVERBOSE(3, "Sparse: R2L"+*o+"_tw_"+targetWordString << std::endl);
    } else {
      scoreBreakdown->PlusEquals(this,
                                 "R2L"+*o+"_tw_OTHER",
                                 1);
      FEATUREVERBOSE(3, "Sparse: R2L"+*o+"_tw_OTHER" << std::endl);
    }
  }

  // source word

  Range sourceSpan = hypo->GetCurrSourceRange();
  const InputType& input = hypo->GetManager().GetSource();
  const Sentence& sourceSentence = static_cast<const Sentence&>(input);
  const Word& sourceWord = sourceSentence.GetWord(sourceSpan.GetEndPos());

  const std::string& sourceWordString = sourceWord[0]->GetString().as_string();
  if (sourceWordString != "<s>" && sourceWordString != "</s>") {
    if ( !m_useSourceWordList || m_sourceWordList.find(sourceWord[0]) != m_sourceWordList.end() ) {
      scoreBreakdown->PlusEquals(this,
                                 "R2L"+*o+"_sw_"+sourceWordString,
                                 1);
      FEATUREVERBOSE(3, "Sparse: R2L"+*o+"_sw_"+sourceWordString << std::endl);
    } else {
      scoreBreakdown->PlusEquals(this,
                                 "R2L"+*o+"_sw_OTHER",
                                 1);
      FEATUREVERBOSE(3, "Sparse: R2L"+*o+"_sw_OTHER" << std::endl);
    }
  }
}


void PhraseOrientationFeature::SparseNonTerminalL2RScore(const Factor* nonTerminalSymbol,
    ScoreComponentCollection* scoreBreakdown,
    const std::string* o) const
{
  if ( nonTerminalSymbol != m_glueTargetLHS ) {
    const std::string& nonTerminalString = nonTerminalSymbol->GetString().as_string();
    scoreBreakdown->PlusEquals(this,
                               "L2R"+*o+"_n_"+nonTerminalString,
                               1);
    FEATUREVERBOSE(3, "Sparse: L2R"+*o+"_n_"+nonTerminalString << std::endl);
  }
}


void PhraseOrientationFeature::SparseNonTerminalR2LScore(const Factor* nonTerminalSymbol,
    ScoreComponentCollection* scoreBreakdown,
    const std::string* o) const
{
  if ( nonTerminalSymbol != m_glueTargetLHS ) {
    const std::string& nonTerminalString = nonTerminalSymbol->GetString().as_string();
    scoreBreakdown->PlusEquals(this,
                               "R2L"+*o+"_n_"+nonTerminalString,
                               1);
    FEATUREVERBOSE(3, "Sparse: R2L"+*o+"_n_"+nonTerminalString << std::endl);
  }
}


const std::string* PhraseOrientationFeature::ToString(const MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS o) const
{
  if ( o == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_LEFT ) {
    return &MORIENT;

  } else if ( o == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_RIGHT ) {
    return &SORIENT;

  } else if ( ( o == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DLEFT ) ||
              ( o == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_DRIGHT ) ||
              ( o == MosesTraining::Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN ) ) {
    return &DORIENT;

  } else {
    UTIL_THROW2(GetScoreProducerDescription()
                << ": Unsupported orientation type.");
  }
  return NULL;
}


}