std_benchmark.cpp 26.9 KB
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
/*
 * ASCLITE
 * Author: Jerome Ajot, Jon Fiscus, Nicolas Radde, Chris Laprun
 *
 * This software was developed at the National Institute of Standards and Technology by 
 * employees of the Federal Government in the course of their official duties. Pursuant
 * to title 17 Section 105 of the United States Code this software is not subject to
 * copyright protection and is in the public domain. ASCLITE is an experimental system.
 * NIST assumes no responsibility whatsoever for its use by other parties, and makes no
 * guarantees, expressed or implied, about its quality, reliability, or any other
 * characteristic. We would appreciate acknowledgement if the software is used.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS."  With regard to this software, NIST MAKES NO EXPRESS
 * OR IMPLIED WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING MERCHANTABILITY,
 * OR FITNESS FOR A PARTICULAR PURPOSE.
 */

#include "std_benchmark.h" // class's header file
#include "speech.h"

const int StdBenchmark::REF_DIM = 1;
const int StdBenchmark::HYP_DIM = 0;

void StdBenchmark::CreateSimpleSegment(string text1, string text2, string text3, bool isRef)
{
	int dim = (isRef) ? REF_DIM : HYP_DIM;

	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, text1);
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, text2, t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, text3, t_tok1, NULL);  
	a_tok1->SetToken(dim, t_tok0);
	a_tok2->SetToken(dim, t_tok1);
	a_tok3->SetToken(dim, t_tok2);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);

	(isRef) ? g_segs->AddReference(t_seg) : g_segs->AddHypothesis(t_seg);
}

void StdBenchmark::CreateSimpleAlignment(string _ref1, string _ref2, string _ref3, string _hyp1, string _hyp2, string _hyp3)
{
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok1 = new GraphAlignedToken(2);
	a_tok2 = new GraphAlignedToken(2);
	a_tok3 = new GraphAlignedToken(2);
	CreateSimpleSegment(_ref1, _ref2, _ref3, true);
	CreateSimpleSegment(_hyp1, _hyp2, _hyp3, false);

	tests.push_back(g_segs);
}

// class constructor
StdBenchmark::StdBenchmark()
{
	SpeechSet* speechSet = new SpeechSet();
	speech = new Speech(speechSet);

	// 0: basic test
	// two exact same sentences (3 tokens long)
	// ref: a b c
	// hyp: a b c
	CreateSimpleAlignment("a", "b", "c", "a", "b", "c");
	props.clear();
	properties.push_back(props);
	costs["std"].push_back(0);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	results.push_back(t_ali_toks);

	// 1: basic test
	// one mistake in 2 sentences (3 tokens long)
	// ref: a f c
	// hyp: a b c
	CreateSimpleAlignment("a", "f", "c", "a", "b", "c");
	props.clear();
	properties.push_back(props);
	costs["std"].push_back(400);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	results.push_back(t_ali_toks);

	// 2: basic test
	// one insertion in 2 sentences (3 tokens long)
	// ref : a * c
	// hyp : a b c
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok1 = new GraphAlignedToken(2);
	a_tok2 = new GraphAlignedToken(2);
	a_tok3 = new GraphAlignedToken(2);

	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok0, NULL);
	a_tok1->SetToken(REF_DIM, t_tok0);
	a_tok2->SetToken(REF_DIM, NULL);
	a_tok3->SetToken(REF_DIM, t_tok1);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok1);
	g_segs->AddReference(t_seg);

	CreateSimpleSegment("a", "b", "c", false);

	tests.push_back(g_segs);

	properties.push_back(props);
	costs["std"].push_back(300);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	results.push_back(t_ali_toks);

	// 3: basic test
	// one deletion in 2 sentences (3 tokens long)
	// ref : a b c
	// hyp : a * c
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok1 = new GraphAlignedToken(2);
	a_tok2 = new GraphAlignedToken(2);
	a_tok3 = new GraphAlignedToken(2);

	CreateSimpleSegment("a", "b", "c", true);

	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok0, NULL);
	a_tok1->SetToken(HYP_DIM, t_tok0);
	a_tok2->SetToken(HYP_DIM, NULL);
	a_tok3->SetToken(HYP_DIM, t_tok1);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok1);
	g_segs->AddHypothesis(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);
	costs["std"].push_back(300);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	results.push_back(t_ali_toks);

	// 4: Basic test
	// All insertions of 3 tokens
	// ref: * * *
	// hyp: a b c
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok1 = new GraphAlignedToken(2);
	a_tok2 = new GraphAlignedToken(2);
	a_tok3 = new GraphAlignedToken(2);

	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	a_tok1->SetToken(REF_DIM, NULL);
	a_tok2->SetToken(REF_DIM, NULL);
	a_tok3->SetToken(REF_DIM, NULL);
	g_segs->AddReference(t_seg);

	CreateSimpleSegment("a", "b", "c", false);

	tests.push_back(g_segs);

	properties.push_back(props);
	costs["std"].push_back(900);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	results.push_back(t_ali_toks);


	// 5: Basic test
	// All deletions of 3 tokens
	// ref: a b c
	// hyp: * * *
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok1 = new GraphAlignedToken(2);
	a_tok2 = new GraphAlignedToken(2);
	a_tok3 = new GraphAlignedToken(2);

	CreateSimpleSegment("a", "b", "c", true);

	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	a_tok1->SetToken(HYP_DIM, NULL);
	a_tok2->SetToken(HYP_DIM, NULL);
	a_tok3->SetToken(HYP_DIM, NULL);
	g_segs->AddHypothesis(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);
	costs["std"].push_back(900);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	results.push_back(t_ali_toks);


	// 6: multi dimension align
	// multi dimension alignment of 5 tokens 2Hyp, 2Ref
	// Ref1 : a b c e f * * * * *
	// Ref2 : * * * * * a b c e f
	// Hyp1 : a b c e f * * * * *
	// Hyp2 : * * * * * a b c e f
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(2);
	a_tok0 = new GraphAlignedToken(4);
	a_tok1 = new GraphAlignedToken(4);
	a_tok2 = new GraphAlignedToken(4);
	a_tok3 = new GraphAlignedToken(4);
	a_tok4 = new GraphAlignedToken(4);
	a_tok5 = new GraphAlignedToken(4);
	a_tok6 = new GraphAlignedToken(4);
	a_tok7 = new GraphAlignedToken(4);
	a_tok8 = new GraphAlignedToken(4);
	a_tok9 = new GraphAlignedToken(4);

	// hyp: a b c e f * * * * *
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(2000, 3000, t_seg, "e", t_tok2, NULL);
	t_tok4 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok3, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok4);
	a_tok0->SetToken(0, t_tok0);
	a_tok1->SetToken(0, t_tok1);
	a_tok2->SetToken(0, t_tok2);
	a_tok3->SetToken(0, t_tok3);
	a_tok4->SetToken(0, t_tok4);
	a_tok5->SetToken(0, NULL);
	a_tok6->SetToken(0, NULL);
	a_tok7->SetToken(0, NULL);
	a_tok8->SetToken(0, NULL);
	a_tok9->SetToken(0, NULL);
	g_segs->AddHypothesis(t_seg);

	// hyp: * * * * * a b c e f
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(2000, 3000, t_seg, "e", t_tok2, NULL);
	t_tok4 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok3, NULL);
	a_tok0->SetToken(1, NULL);
	a_tok1->SetToken(1, NULL);
	a_tok2->SetToken(1, NULL);
	a_tok3->SetToken(1, NULL);
	a_tok4->SetToken(1, NULL);
	a_tok5->SetToken(1, t_tok0);
	a_tok6->SetToken(1, t_tok1);
	a_tok7->SetToken(1, t_tok2);
	a_tok8->SetToken(1, t_tok3);
	a_tok9->SetToken(1, t_tok4);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok4);
	g_segs->AddHypothesis(t_seg);

	// ref: a b c e f * * * * *
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(2000, 3000, t_seg, "e", t_tok2, NULL);
	t_tok4 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok3, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok4);
	a_tok0->SetToken(2, t_tok0);
	a_tok1->SetToken(2, t_tok1);
	a_tok2->SetToken(2, t_tok2);
	a_tok3->SetToken(2, t_tok3);
	a_tok4->SetToken(2, t_tok4);
	a_tok5->SetToken(2, NULL);
	a_tok6->SetToken(2, NULL);
	a_tok7->SetToken(2, NULL);
	a_tok8->SetToken(2, NULL);
	a_tok9->SetToken(2, NULL);
	g_segs->AddReference(t_seg);

	// ref: * * * * * a b c e f
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(2000, 3000, t_seg, "e", t_tok2, NULL);
	t_tok4 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok3, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok4);
	a_tok0->SetToken(3, NULL);
	a_tok1->SetToken(3, NULL);
	a_tok2->SetToken(3, NULL);
	a_tok3->SetToken(3, NULL);
	a_tok4->SetToken(3, NULL);
	a_tok5->SetToken(3, t_tok0);
	a_tok6->SetToken(3, t_tok1);
	a_tok7->SetToken(3, t_tok2);
	a_tok8->SetToken(3, t_tok3);
	a_tok9->SetToken(3, t_tok4);
	g_segs->AddReference(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);
	costs["std"].push_back(0);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok9);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok8);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok7);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok6);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok5);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok4);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0); 
	results.push_back(t_ali_toks);

	// 7: multi dimension align 2
	// multi dimension alignment of 3 tokens 1Hyp, 2Ref
	// Ref1 : a b c
	// Ref2 : d e f
	// Hyp1 : a b c d e {c/f}
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok0 = new GraphAlignedToken(3);
	a_tok1 = new GraphAlignedToken(3);
	a_tok2 = new GraphAlignedToken(3);
	a_tok3 = new GraphAlignedToken(3);
	a_tok4 = new GraphAlignedToken(3);
	a_tok5 = new GraphAlignedToken(3);

	// hyp: a b c d e {c/f}
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(2000, 3000, t_seg, "d", t_tok2, NULL);
	t_tok4 = Token::CreateWithEndTime(2000, 3000, t_seg, "e", t_tok3, NULL);
	t_tok5 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok4, NULL);
	t_tok6 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok4, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok5);
	t_seg->AddLastToken(t_tok6);
	a_tok0->SetToken(0, t_tok0);
	a_tok1->SetToken(0, t_tok1);
	a_tok2->SetToken(0, t_tok2);
	a_tok3->SetToken(0, t_tok3);
	a_tok4->SetToken(0, t_tok4);
	a_tok5->SetToken(0, t_tok6);// <-- important f is align not c
	g_segs->AddHypothesis(t_seg);

	// Ref1 : a b c
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(1, t_tok0);
	a_tok1->SetToken(1, t_tok1);
	a_tok2->SetToken(1, t_tok2);
	a_tok3->SetToken(1, NULL);
	a_tok4->SetToken(1, NULL);
	a_tok5->SetToken(1, NULL);
	g_segs->AddReference(t_seg);

	// Ref2 : d e f
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "d");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "e", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(2, NULL);
	a_tok1->SetToken(2, NULL);
	a_tok2->SetToken(2, NULL);
	a_tok3->SetToken(2, t_tok0);
	a_tok4->SetToken(2, t_tok1);
	a_tok5->SetToken(2, t_tok2);
	g_segs->AddReference(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);	
	costs["std"].push_back(0);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok5);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok4);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0);
	results.push_back(t_ali_toks);

	// 8: multi dimension align 3
	// multi dimension alignment of 3 tokens 1Hyp, 2Ref
	// Ref1 : a b c
	// Ref2 : c e f
	// Hyp1 : a b c d e {c/f}
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok0 = new GraphAlignedToken(3);
	a_tok1 = new GraphAlignedToken(3);
	a_tok2 = new GraphAlignedToken(3);
	a_tok3 = new GraphAlignedToken(3);
	a_tok4 = new GraphAlignedToken(3);
	a_tok5 = new GraphAlignedToken(3);

	// Hyp1 : a b c d e {c/f}
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(2000, 3000, t_seg, "d", t_tok2, NULL);
	t_tok4 = Token::CreateWithEndTime(2000, 3000, t_seg, "e", t_tok3, NULL);
	t_tok5 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok4, NULL);
	t_tok6 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok4, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok5);
	t_seg->AddLastToken(t_tok6);
	a_tok0->SetToken(0, t_tok0);
	a_tok1->SetToken(0, t_tok1);
	a_tok2->SetToken(0, t_tok2);
	a_tok3->SetToken(0, t_tok3);
	a_tok4->SetToken(0, t_tok4);
	a_tok5->SetToken(0, t_tok6);// <-- important f is align not c
	g_segs->AddHypothesis(t_seg);

	// Ref1 : a b c
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(1, t_tok0);
	a_tok1->SetToken(1, t_tok1);
	a_tok2->SetToken(1, t_tok2);
	a_tok3->SetToken(1, NULL);
	a_tok4->SetToken(1, NULL);
	a_tok5->SetToken(1, NULL);
	g_segs->AddReference(t_seg);

	// Ref2 : c e f
	t_seg = Segment::CreateWithEndTime(0, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "c");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "e", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "f", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(2, NULL);
	a_tok1->SetToken(2, NULL);
	a_tok2->SetToken(2, NULL);
	a_tok3->SetToken(2, t_tok0);
	a_tok4->SetToken(2, t_tok1);
	a_tok5->SetToken(2, t_tok2);
	g_segs->AddReference(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);	
	costs["std"].push_back(400);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok5);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok4);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0);
	results.push_back(t_ali_toks); 

	// 9: multi dimension alignment designed to test the time-pruning option turned off
	// multi dimension alignment of 3 tokens 1Hyp, 2Ref
	// Ref1 : a b c
	// Ref2 :     d
	// Hyp1 : d a b c
	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok0 = new GraphAlignedToken(3);
	a_tok1 = new GraphAlignedToken(3);
	a_tok2 = new GraphAlignedToken(3);
	a_tok3 = new GraphAlignedToken(3);
	a_tok4 = new GraphAlignedToken(3);
	a_tok5 = new GraphAlignedToken(3);

	// Hyp1 : a b c 
	t_seg = Segment::CreateWithEndTime(0, 6000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "d");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "a", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "b", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(5000, 6000, t_seg, "c", t_tok2, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok3);
	a_tok0->SetToken(0, t_tok0);
	a_tok1->SetToken(0, t_tok1);
	a_tok2->SetToken(0, t_tok2);
	a_tok3->SetToken(0, t_tok3);
	g_segs->AddHypothesis(t_seg);

	// Ref1 : a b c
	t_seg = Segment::CreateWithEndTime(0, 3000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(1, NULL);
	a_tok1->SetToken(1, t_tok0);
	a_tok2->SetToken(1, t_tok1);
	a_tok3->SetToken(1, t_tok2);
	g_segs->AddReference(t_seg);

	// Ref2 : d
	t_seg = Segment::CreateWithEndTime(2000, 3000, speech);
	t_tok0 = Token::CreateWithEndTime(2000, 3000, t_seg, "d");
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok0);
	a_tok0->SetToken(2, t_tok0);
	a_tok1->SetToken(2, NULL);
	a_tok2->SetToken(2, NULL);
	a_tok3->SetToken(2, NULL);
	g_segs->AddReference(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);	
	costs["std"].push_back(0);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0);
	results.push_back(t_ali_toks); 

	// 10: multi dimension alignment designed to test the time-pruning option turned ON
	// multi dimension alignment of 3 tokens 1Hyp, 2Ref
	// Ref1 : a b c
	// Ref2 :     d
	// Hyp1 : d a b c

	props.clear();
	props[string("align.timepruneoptimization")] = string("true");	
	props[string("align.timepruneoptimizationthreshold")] = string("0");
	props[string("align.timewordoptimization")] = string("true");	
	props[string("align.timewordoptimizationthreshold")] = string("0");
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok0 = new GraphAlignedToken(3);
	a_tok1 = new GraphAlignedToken(3);
	a_tok2 = new GraphAlignedToken(3);
	a_tok3 = new GraphAlignedToken(3);
	a_tok4 = new GraphAlignedToken(3);
	a_tok5 = new GraphAlignedToken(3);

	// Hyp1 : d a b c 
	t_seg = Segment::CreateWithEndTime(0, 6000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "d");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "a", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "b", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(5000, 6000, t_seg, "c", t_tok2, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok3);
	a_tok0->SetToken(0, t_tok0);
	a_tok1->SetToken(0, t_tok1);
	a_tok2->SetToken(0, t_tok2);
	a_tok3->SetToken(0, NULL);
	a_tok4->SetToken(0, t_tok3);
	g_segs->AddHypothesis(t_seg);

	// Ref1 : a b c
	t_seg = Segment::CreateWithEndTime(0, 3000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(1, NULL);
	a_tok1->SetToken(1, t_tok0);
	a_tok2->SetToken(1, t_tok1);
	a_tok3->SetToken(1, t_tok2);
	a_tok4->SetToken(1, NULL);
	g_segs->AddReference(t_seg);

	// Ref2 : d
	t_seg = Segment::CreateWithEndTime(2000, 6000, speech);
	t_tok0 = Token::CreateWithEndTime(2000, 6000, t_seg, "d");
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok0);
	a_tok0->SetToken(2, NULL);
	a_tok1->SetToken(2, NULL);
	a_tok2->SetToken(2, NULL);
	a_tok3->SetToken(2, NULL);
	a_tok4->SetToken(2, t_tok0);
	g_segs->AddReference(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);	
	costs["std"].push_back(1000);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok4);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0);
	results.push_back(t_ali_toks); 

	// 11: multi dimension alignment designed to test the time-pruning option turned OFF
	// multi dimension alignment of 3 tokens 1Hyp, 2Ref
	// Ref1 : a b c
	// Ref2 :     d
	// Hyp1 : d a b c

	props.clear();
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(1);
	a_tok0 = new GraphAlignedToken(3);
	a_tok1 = new GraphAlignedToken(3);
	a_tok2 = new GraphAlignedToken(3);
	a_tok3 = new GraphAlignedToken(3);

	// Hyp1 : d a b c 
	t_seg = Segment::CreateWithEndTime(0, 6000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "d");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "a", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "b", t_tok1, NULL);
	t_tok3 = Token::CreateWithEndTime(5000, 6000, t_seg, "c", t_tok2, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok3);
	a_tok0->SetToken(0, t_tok0);
	a_tok1->SetToken(0, t_tok1);
	a_tok2->SetToken(0, t_tok2);
	a_tok3->SetToken(0, t_tok3);
	g_segs->AddHypothesis(t_seg);

	// Ref1 : a b c
	t_seg = Segment::CreateWithEndTime(0, 3000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "b", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(1, NULL);
	a_tok1->SetToken(1, t_tok0);
	a_tok2->SetToken(1, t_tok1);
	a_tok3->SetToken(1, t_tok2);
	g_segs->AddReference(t_seg);

	// Ref2 : d
	t_seg = Segment::CreateWithEndTime(2000, 6000, speech);
	t_tok0 = Token::CreateWithEndTime(2000, 6000, t_seg, "d");
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok0);
	a_tok0->SetToken(2, t_tok0);
	a_tok1->SetToken(2, NULL);
	a_tok2->SetToken(2, NULL);
	a_tok3->SetToken(2, NULL);
	g_segs->AddReference(t_seg);

	tests.push_back(g_segs);

	properties.push_back(props);	
	costs["std"].push_back(0);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0);
	results.push_back(t_ali_toks); 
	
	// 12: multi dimension align 2 + Speaker Optimization
	// Ref1 <=> Hyp1 and Ref2 <=> Hyp2
	// Hyp1 : * a d b *
	// Hyp2 : d * * * c
	// Ref1 : * * d b *
	// Ref2 : * a * * c 
	// Costs: 3 1 0 0 0 = 4
	props.clear();
	props[string("align.speakeroptimization")] = string("true");
	props[string("dataDirectory")] = string("../testfiles");
	
	g_segs = new SegmentsGroup();
	t_ali_toks = new GraphAlignedSegment(2);
	a_tok0 = new GraphAlignedToken(4);
	a_tok1 = new GraphAlignedToken(4);
	a_tok2 = new GraphAlignedToken(4);
	a_tok3 = new GraphAlignedToken(4);
	a_tok4 = new GraphAlignedToken(4);
	
	// Hyp1 : * a d b *
	t_seg = Segment::CreateWithEndTime(0, 3000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(1000, 2000, t_seg, "d", t_tok0, NULL);
	t_tok2 = Token::CreateWithEndTime(2000, 3000, t_seg, "b", t_tok1, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok2);
	a_tok0->SetToken(0, NULL);
	a_tok1->SetToken(0, t_tok0);
	a_tok2->SetToken(0, t_tok1);
	a_tok3->SetToken(0, t_tok2);
	a_tok4->SetToken(0, NULL);
	t_seg->SetSource("FileA");
	t_seg->SetChannel("1");
	t_seg->SetSpeakerId("Speaker_alpha");
	g_segs->AddHypothesis(t_seg);
	
	// Hyp2 : d * * * c
	t_seg = Segment::CreateWithEndTime(1000, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(1000, 2000, t_seg, "d");
	t_tok1 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok0, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok1);
	a_tok0->SetToken(1, t_tok0);
	a_tok1->SetToken(1, NULL);
	a_tok2->SetToken(1, NULL);
	a_tok3->SetToken(1, NULL);
	a_tok4->SetToken(1, t_tok1);
	t_seg->SetSource("FileA");
	t_seg->SetChannel("1");
	t_seg->SetSpeakerId("Speaker_beta");
	g_segs->AddHypothesis(t_seg);
	
	// Ref1 : * * d b *
	t_seg = Segment::CreateWithEndTime(1000, 5000, speech);
	t_tok0 = Token::CreateWithEndTime(1000, 2000, t_seg, "d");
	t_tok1 = Token::CreateWithEndTime(2000, 3000, t_seg, "b", t_tok0, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok1);
	a_tok0->SetToken(2, NULL);
	a_tok1->SetToken(2, NULL);
	a_tok2->SetToken(2, t_tok0);
	a_tok3->SetToken(2, t_tok1);
	a_tok4->SetToken(2, NULL);
	t_seg->SetSource("FileA");
	t_seg->SetChannel("1");
	t_seg->SetSpeakerId("Speaker_gamma");
	g_segs->AddReference(t_seg);
	
	// Ref2 : * a * * c
	t_seg = Segment::CreateWithEndTime(0, 3000, speech);
	t_tok0 = Token::CreateWithEndTime(0, 1000, t_seg, "a");
	t_tok1 = Token::CreateWithEndTime(2000, 3000, t_seg, "c", t_tok0, NULL);
	t_seg->AddFirstToken(t_tok0);
	t_seg->AddLastToken(t_tok1);
	a_tok0->SetToken(3, NULL);
	a_tok1->SetToken(3, t_tok0);
	a_tok2->SetToken(3, NULL);
	a_tok3->SetToken(3, NULL);
	a_tok4->SetToken(3, t_tok1);
	t_seg->SetSource("FileA");
	t_seg->SetChannel("1");
	t_seg->SetSpeakerId("Speaker_delta");
	g_segs->AddReference(t_seg);
	
	tests.push_back(g_segs);

	properties.push_back(props);
	costs["std"].push_back(400);

	t_ali_toks->AddFrontGraphAlignedToken(a_tok4);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok3);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok2);
	t_ali_toks->AddFrontGraphAlignedToken(a_tok1);  	
	t_ali_toks->AddFrontGraphAlignedToken(a_tok0); 
	results.push_back(t_ali_toks);
}

// class destructor
StdBenchmark::~StdBenchmark()
{
	delete t_tok0;
	delete t_tok1;
	delete t_tok2;
	delete t_tok3;
	delete t_tok4;
	delete t_tok5;
	delete t_tok6;
	delete t_seg;
	delete g_segs;
	delete a_tok1;
	delete a_tok2;
	delete a_tok3;
	delete a_tok4;
	delete a_tok5;
	delete a_tok6;
	delete a_tok7;
	delete a_tok8;
	delete a_tok9;
	delete a_tok0;
	delete t_ali_toks;	
	delete speech;
}

/**
* Access the "type" cost no index
 */
int StdBenchmark::GetCost(int index, string type)
{
	return costs[type][index];
}