-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathexample_report.html
More file actions
804 lines (801 loc) · 49 KB
/
Copy pathexample_report.html
File metadata and controls
804 lines (801 loc) · 49 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
<!DOCTYPE html>
<html>
<head>
<title>L.O.B.S.T.E.R.</title>
<style>
html {
scroll-padding-top: 5em;
}
body {
margin: 0;
}
.title {
background-color: #009ada;
color: white;
padding: 0.5em;
margin: 0;
}
h1 {
padding: 0;
margin: 0;
}
h2 {
padding: 0.5em;
margin: 0;
border-bottom: 0.25em solid #009ada;
text-align: right;
}
.content {
padding: 0.5em;
}
.item-ok, .item-partial, .item-missing, .item-justified {
border: 1px solid black;
border-radius: 0.5em;
margin-top: 0.4em;
padding: 0.25em;
}
.item-ok:target, .item-partial:target, .item-missing:target, .item-justified:target {
border: 3px solid black;
}
.subtle-ok, .subtle-partial, .subtle-missing, .subtle-justified {
padding-left: 0.2em;
}
.item-ok {
background-color: #efe;
}
.item-partial {
background-color: #ffe;
}
.item-missing {
background-color: #fee;
}
.item-justified {
background-color: #eee;
}
.subtle-ok {
border-left: 0.2em solid #8f8;
}
.subtle-partial {
border-left: 0.2em solid #ff8;
}
.subtle-missing {
border-left: 0.2em solid #f88;
}
.subtle-justified {
border-left: 0.2em solid #888;
}
.item-name {
font-size: 125%;
font-weight: bold;
}
.attribute {
margin-top: 0.5em;
}
.columns {
display: flex;
}
.columns .column {
flex: 45%;
}
thead tr {
font-weight: bold;
}
tbody tr.alt {
background-color: #eee;
}
blockquote {
font-style: italic;
border-left: 0.2em solid gray;
padding-left: 0.4em;
margin-left: 0.5em;
}
#navbar {
overflow: hidden;
background-color: #009ada;
}
.navbar-right {
float: right;
}
#navbar a {
float: left;
display: block;
color: white;
padding: 14px;
text-decoration: none;
}
#navbar a:hover {
background-color: white;
color: #009ada;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sticky + .htmlbody {
padding-top: 60px;
}
#navbar .dropdown {
float: left;
overflow: hidden;
}
.navbar-right .dropdown {
float: right;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: inherit;
border: none;
outline: none;
padding: 14px 16px;
background-color: inherit;
color: white;
font-family: inherit;
margin: 0;
}
.dropdown:hover .dropbtn {
background-color: white;
color: #009ada;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #009ada;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.navbar-right .dropdown-content {
right: 0;
}
.dropdown-content a {
float: none;
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
color: #009ada;
background-color: white;
}
.dropdown:hover .dropdown-content {
display: flex;
flex-direction: column;
}
.sticky .dropdown-content {
position: fixed;
}
</style>
</head>
<body>
<div class="title">
<h1>L.O.B.S.T.E.R.</h1>
<div class="subtitle">Lightweight Open BMW Software Traceability Evidence Report</div>
</div>
<div id="navbar">
<a href="#sec-overview">Overview</a>
<a href="#sec-issues">Issues</a>
<div class="dropdown">
<button class="dropbtn">Detailed report<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg></button>
<div class="dropdown-content">
<a href="#sec-419cfc02b324dc7d8faefa90ed608fb0">System Requirements</a>
<a href="#sec-9d273bd32c1fceb91b7d6a4d40e98bdd">Software Requirements</a>
<a href="#sec-ca0dbad92a874b2f69b549293387925e">Code</a>
<a href="#sec-840c3e13412933b0e3f7394f4c7fecb0">Verification Test</a>
</div>
</div>
<div class="navbar-right">
<div class="dropdown">
<button class="dropbtn">LOBSTER<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg></button>
<div class="dropdown-content">
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/README.md"><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> Documentation</a>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/LICENSE.md"><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> License</a>
<a href="https://github.com/bmw-software-engineering/lobster"><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> Source</a>
</div>
</div>
</div>
</div>
<div class="htmlbody">
<h2 id="sec-overview">Overview</h2>
<div class="content">
<div class="columns">
<div class="column">
<h3>Coverage</h3>
<table>
<thead><tr>
<td>Category</td>
<td>Ratio</td>
<td>Coverage</td>
<td>OK Items</td>
<td>Total Items</td>
</tr><thead>
<tbody>
</tbody>
<tr>
<td><a href="#sec-419cfc02b324dc7d8faefa90ed608fb0">System Requirements</a></td>
<td>0.0%</td>
<td>
<progress value="0" max="1">
0.00%
</progress>
</td>
<td align="right">0</td>
<td align="right">1</td>
</tr>
<tr>
<td><a href="#sec-9d273bd32c1fceb91b7d6a4d40e98bdd">Software Requirements</a></td>
<td>50.0%</td>
<td>
<progress value="3" max="6">
50.00%
</progress>
</td>
<td align="right">3</td>
<td align="right">6</td>
</tr>
<tr>
<td><a href="#sec-ca0dbad92a874b2f69b549293387925e">Code</a></td>
<td>60.0%</td>
<td>
<progress value="6" max="10">
60.00%
</progress>
</td>
<td align="right">6</td>
<td align="right">10</td>
</tr>
<tr>
<td><a href="#sec-840c3e13412933b0e3f7394f4c7fecb0">Verification Test</a></td>
<td>100.0%</td>
<td>
<progress value="5" max="5">
100.00%
</progress>
</td>
<td align="right">5</td>
<td align="right">5</td>
</tr>
</table>
</div>
<div class="column">
<h3>Tracing policy</h3>
<svg width="248pt" height="188pt"
viewBox="0.00 0.00 247.53 188.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 184)">
<title>LOBSTER Tracing Policy</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-184 243.53,-184 243.53,4 -4,4"/>
<!-- n_419cfc02b324dc7d8faefa90ed608fb0 -->
<g id="node1" class="node">
<title>n_419cfc02b324dc7d8faefa90ed608fb0</title>
<g id="a_node1"><a xlink:href="#sec-419cfc02b324dc7d8faefa90ed608fb0" xlink:title="System Requirements">
<path fill="none" stroke="black" d="M147,-180C147,-180 35,-180 35,-180 29,-180 23,-174 23,-168 23,-168 23,-156 23,-156 23,-150 29,-144 35,-144 35,-144 147,-144 147,-144 153,-144 159,-150 159,-156 159,-156 159,-168 159,-168 159,-174 153,-180 147,-180"/>
<text text-anchor="middle" x="91" y="-156.95" font-family="Times,serif" font-size="14.00">System Requirements</text>
</a>
</g>
</g>
<!-- n_9d273bd32c1fceb91b7d6a4d40e98bdd -->
<g id="node2" class="node">
<title>n_9d273bd32c1fceb91b7d6a4d40e98bdd</title>
<g id="a_node2"><a xlink:href="#sec-9d273bd32c1fceb91b7d6a4d40e98bdd" xlink:title="Software Requirements">
<path fill="none" stroke="black" d="M151.12,-108C151.12,-108 30.87,-108 30.87,-108 24.87,-108 18.88,-102 18.88,-96 18.88,-96 18.88,-84 18.88,-84 18.88,-78 24.88,-72 30.88,-72 30.88,-72 151.12,-72 151.12,-72 157.12,-72 163.12,-78 163.12,-84 163.12,-84 163.12,-96 163.12,-96 163.12,-102 157.12,-108 151.12,-108"/>
<text text-anchor="middle" x="91" y="-84.95" font-family="Times,serif" font-size="14.00">Software Requirements</text>
</a>
</g>
</g>
<!-- n_419cfc02b324dc7d8faefa90ed608fb0->n_9d273bd32c1fceb91b7d6a4d40e98bdd -->
<g id="edge1" class="edge">
<title>n_419cfc02b324dc7d8faefa90ed608fb0->n_9d273bd32c1fceb91b7d6a4d40e98bdd</title>
<path fill="none" stroke="black" d="M91,-143.7C91,-136.41 91,-127.73 91,-119.54"/>
<polygon fill="black" stroke="black" points="94.5,-119.62 91,-109.62 87.5,-119.62 94.5,-119.62"/>
</g>
<!-- n_ca0dbad92a874b2f69b549293387925e -->
<g id="node3" class="node">
<title>n_ca0dbad92a874b2f69b549293387925e</title>
<g id="a_node3"><a xlink:href="#sec-ca0dbad92a874b2f69b549293387925e" xlink:title="Code">
<polygon fill="none" stroke="black" points="54,-36 0,-36 0,0 54,0 54,-36"/>
<text text-anchor="middle" x="27" y="-12.95" font-family="Times,serif" font-size="14.00">Code</text>
</a>
</g>
</g>
<!-- n_9d273bd32c1fceb91b7d6a4d40e98bdd->n_ca0dbad92a874b2f69b549293387925e -->
<g id="edge2" class="edge">
<title>n_9d273bd32c1fceb91b7d6a4d40e98bdd->n_ca0dbad92a874b2f69b549293387925e</title>
<path fill="none" stroke="black" d="M75.18,-71.7C67.66,-63.47 58.53,-53.48 50.24,-44.42"/>
<polygon fill="black" stroke="black" points="52.99,-42.24 43.66,-37.22 47.82,-46.96 52.99,-42.24"/>
</g>
<!-- n_840c3e13412933b0e3f7394f4c7fecb0 -->
<g id="node4" class="node">
<title>n_840c3e13412933b0e3f7394f4c7fecb0</title>
<g id="a_node4"><a xlink:href="#sec-840c3e13412933b0e3f7394f4c7fecb0" xlink:title="Verification Test">
<polygon fill="none" stroke="black" points="239.53,-18 197.76,-36 114.24,-36 72.47,-18 114.24,0 197.76,0 239.53,-18"/>
<text text-anchor="middle" x="156" y="-12.95" font-family="Times,serif" font-size="14.00">Verification Test</text>
</a>
</g>
</g>
<!-- n_9d273bd32c1fceb91b7d6a4d40e98bdd->n_840c3e13412933b0e3f7394f4c7fecb0 -->
<g id="edge3" class="edge">
<title>n_9d273bd32c1fceb91b7d6a4d40e98bdd->n_840c3e13412933b0e3f7394f4c7fecb0</title>
<path fill="none" stroke="black" d="M107.07,-71.7C114.7,-63.47 123.98,-53.48 132.4,-44.42"/>
<polygon fill="black" stroke="black" points="134.85,-46.92 139.09,-37.21 129.72,-42.16 134.85,-46.92"/>
</g>
</g>
</svg>
</div>
</div>
</div>
<h2 id="sec-issues">Issues</h2>
<div class="content">
<ul>
<li>codebeamer Functional requirement <a href='#item-d499f1e2ff6c8662012d4c4bfe35060a5eda7b6c'>LOBSTER demo</a>: status is Potato, expected Valid</li>
<li>Simulink Block <a href='#item-f44a5e4c051c43e14dc1c71d4a3818a0b038597e'>exclusive_or</a>: missing up reference</li>
<li>MATLAB Function <a href='#item-abac171105982dd5a053572a6f4d88ef30fbfc42'>exclusive_or/MATLAB Function</a>: missing up reference</li>
<li>C/C++ Function <a href='#item-a59e5952bd9a2f7bb8592b7645968e08f73a9037'>exclusive_or</a>: missing up reference</li>
<li>C/C++ Function <a href='#item-1fcf699056a4c10fafba408751855a62d76a2fc2'>potato</a>: unknown tracing target req example.doesnt_exist</li>
<li>C/C++ Function <a href='#item-1fcf699056a4c10fafba408751855a62d76a2fc2'>potato</a>: missing up reference</li>
<li>TRLC Tagged_requirement <a href='#item-5c0948f96e743a0c3ab3c14ecac0f5d10609f324'>example.req_xor</a>: tracing destination req 12345 has version 42 (expected 5)</li>
<li>TRLC Requirement <a href='#item-714c0c22dee57a69c9425cff0c0bd4ca9ebe5d1f'>example.req_nor</a>: missing up reference</li>
<li>TRLC Requirement <a href='#item-714c0c22dee57a69c9425cff0c0bd4ca9ebe5d1f'>example.req_nor</a>: missing reference to Verification Test</li>
<li>TRLC Linked_requirement <a href='#item-fbfa01aa359da14836c3fe53cd7363bfb1ffb782'>example.req_important</a>: missing reference to Code</li>
<li>TRLC Linked_requirement <a href='#item-fbfa01aa359da14836c3fe53cd7363bfb1ffb782'>example.req_important</a>: missing reference to Verification Test</li>
</ul>
</div>
<h2 id="sec-detailed-report">Detailed report</h2>
<div class="content">
<h3>Requirements and Specification</h3>
<h4 id="sec-419cfc02b324dc7d8faefa90ed608fb0">System Requirements</h4>
<h5>Codebeamer https://potato.kitten, tracker 12345</h5>
<!-- begin item req 12345 -->
<div class="item-missing" id="item-d499f1e2ff6c8662012d4c4bfe35060a5eda7b6c">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> codebeamer Functional requirement LOBSTER demo</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://potato.kitten/cb/issue/666" target="_blank">cb item 666 'LOBSTER demo'</a>
</div>
<div class="attribute">
Status: Potato
</div>
<div class="attribute">
<blockquote>Provide a nice demonstration of LOBSTER through four examples</blockquote>
</div>
<div class="attribute">
<div>Traces to:
<ul>
<li>TRLC Tagged_requirement <a href='#item-1bb1a5e571e24eebc94d2572ab385ee34e338995'>example.req_implication</a></li>
<li>TRLC Tagged_requirement <a href='#item-5c0948f96e743a0c3ab3c14ecac0f5d10609f324'>example.req_xor</a></li>
<li>TRLC Tagged_requirement <a href='#item-3e885dd2f9f061dedab93f44634897ace7f770c8'>example.req_nand</a></li>
</ul>
</div>
<div>Issues:
<ul>
<li>status is Potato, expected Valid</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h4 id="sec-9d273bd32c1fceb91b7d6a4d40e98bdd">Software Requirements</h4>
<h5>tests-integration/projects/basic/potato.trlc</h5>
<!-- begin item req example.req_implication -->
<div class="item-ok" id="item-1bb1a5e571e24eebc94d2572ab385ee34e338995">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> TRLC Tagged_requirement example.req_implication</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/potato.trlc#L3" target="_blank">tests-integration/projects/basic/potato.trlc:3</a>
</div>
<div class="attribute">
<blockquote>text: provide a utility function for logical implication</blockquote>
</div>
<div class="attribute">
<div>Traces to:
<ul>
<li>C/C++ Function <a href='#item-306ea2c9ccbbbc7157c8ff00b3e0381919969d52'>implication</a></li>
<li>GoogleTest Test <a href='#item-0c9dd74b464f7be6456f3d14e144ba8b116dc9b3'>ImplicationTest:BasicTest</a></li>
</ul>
</div>
<div>Derived from:
<ul>
<li>codebeamer Functional requirement <a href='#item-d499f1e2ff6c8662012d4c4bfe35060a5eda7b6c'>LOBSTER demo</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item req example.req_xor -->
<div class="item-missing" id="item-5c0948f96e743a0c3ab3c14ecac0f5d10609f324">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> TRLC Tagged_requirement example.req_xor</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/potato.trlc#L9" target="_blank">tests-integration/projects/basic/potato.trlc:9</a>
</div>
<div class="attribute">
<blockquote>text: provide a utility function for logical exclusive or</blockquote>
</div>
<div class="attribute">
<div>Traces to:
<ul>
<li>Simulink Block <a href='#item-d330ebddaa1ec4c761ec0c070c6f6c71fd4cbb4e'>exclusive_or/My Exclusive Or</a></li>
<li>JSON Test vector <a href='#item-2def120304660abe06791056ae3475223a985c2b'>example.json:XOR Test 1</a></li>
<li>JSON Test vector <a href='#item-12cafbcbb11d67c7c95f6dd4fedbb1b79620379c'>example.json:XOR Test 2</a></li>
</ul>
</div>
<div>Derived from:
<ul>
<li>codebeamer Functional requirement <a href='#item-d499f1e2ff6c8662012d4c4bfe35060a5eda7b6c'>LOBSTER demo</a></li>
</ul>
</div>
<div>Issues:
<ul>
<li>tracing destination req 12345 has version 42 (expected 5)</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item req example.req_nand -->
<div class="item-ok" id="item-3e885dd2f9f061dedab93f44634897ace7f770c8">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> TRLC Tagged_requirement example.req_nand</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/potato.trlc#L15" target="_blank">tests-integration/projects/basic/potato.trlc:15</a>
</div>
<div class="attribute">
<blockquote>text: provide a utility function for logical negated and<br><br>extra_text: potato</blockquote>
</div>
<div class="attribute">
<div>Traces to:
<ul>
<li>TRLC Linked_requirement <a href='#item-fbfa01aa359da14836c3fe53cd7363bfb1ffb782'>example.req_important</a></li>
<li>MATLAB Function <a href='#item-05717df9b8ee784715376855d7afeabeaa6cd1f5'>nand</a></li>
<li>MATLAB Test <a href='#item-39288653f9b39978deae407a61549f53151857b7'>nand_test::test_1</a></li>
</ul>
</div>
<div>Derived from:
<ul>
<li>codebeamer Functional requirement <a href='#item-d499f1e2ff6c8662012d4c4bfe35060a5eda7b6c'>LOBSTER demo</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item req example.req_nor -->
<div class="item-missing" id="item-714c0c22dee57a69c9425cff0c0bd4ca9ebe5d1f">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> TRLC Requirement example.req_nor</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/potato.trlc#L22" target="_blank">tests-integration/projects/basic/potato.trlc:22</a>
</div>
<div class="attribute">
<blockquote>provide a utility function for logical negated or</blockquote>
</div>
<div class="attribute">
<div>Traces to:
<ul>
<li>TRLC Linked_requirement <a href='#item-fbfa01aa359da14836c3fe53cd7363bfb1ffb782'>example.req_important</a></li>
<li>Python Method <a href='#item-44aca84976176f453e178bdd3323e7e9813dcebe'>nor.Example.helper_function</a></li>
<li>Python Method <a href='#item-4fe151cfc168f08ff6bc308291ecbee34309b652'>nor.Example.nor</a></li>
</ul>
</div>
<div>Issues:
<ul>
<li>missing up reference</li>
<li>missing reference to Verification Test</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item req example.req_implies -->
<div class="item-justified" id="item-21cffb8e9b92e4133844f4752a7c8100cf3166c4">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> TRLC Requirement example.req_implies</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/potato.trlc#L27" target="_blank">tests-integration/projects/basic/potato.trlc:27</a>
</div>
<div class="attribute">
<blockquote>provide a utility function for logical implication</blockquote>
</div>
<div class="attribute">
<div>Justifications:
<ul>
<li>not needed</li>
<li>also not needed</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item req example.req_important -->
<div class="item-partial" id="item-fbfa01aa359da14836c3fe53cd7363bfb1ffb782">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> TRLC Linked_requirement example.req_important</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/potato.trlc#L39" target="_blank">tests-integration/projects/basic/potato.trlc:39</a>
</div>
<div class="attribute">
<blockquote>this is important</blockquote>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-3e885dd2f9f061dedab93f44634897ace7f770c8'>example.req_nand</a></li>
<li>TRLC Requirement <a href='#item-714c0c22dee57a69c9425cff0c0bd4ca9ebe5d1f'>example.req_nor</a></li>
</ul>
</div>
<div>Issues:
<ul>
<li>missing reference to Code</li>
<li>missing reference to Verification Test</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h3>Implementation</h3>
<h4 id="sec-ca0dbad92a874b2f69b549293387925e">Code</h4>
<h5>tests-integration/projects/basic/exclusive_or.slx</h5>
<!-- begin item simulink exclusive_or -->
<div class="item-missing" id="item-f44a5e4c051c43e14dc1c71d4a3818a0b038597e">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> Simulink Block exclusive_or</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/exclusive_or.slx" target="_blank">tests-integration/projects/basic/exclusive_or.slx</a>
</div>
<div class="attribute">
<div>Issues:
<ul>
<li>missing up reference</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item simulink exclusive_or/My_Exclusive_Or -->
<div class="item-ok" id="item-d330ebddaa1ec4c761ec0c070c6f6c71fd4cbb4e">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> Simulink Block exclusive_or/My Exclusive Or</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/exclusive_or.slx" target="_blank">tests-integration/projects/basic/exclusive_or.slx</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-5c0948f96e743a0c3ab3c14ecac0f5d10609f324'>example.req_xor</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item matlab exclusive_or/MATLAB Function -->
<div class="item-missing" id="item-abac171105982dd5a053572a6f4d88ef30fbfc42">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> MATLAB Function exclusive_or/MATLAB Function</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/exclusive_or.slx#L1" target="_blank">tests-integration/projects/basic/exclusive_or.slx:1</a>
</div>
<div class="attribute">
<div>Issues:
<ul>
<li>missing up reference</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h5>tests-integration/projects/basic/foo.cpp</h5>
<!-- begin item cpp foo.cpp:implication:3 -->
<div class="item-ok" id="item-306ea2c9ccbbbc7157c8ff00b3e0381919969d52">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> C/C++ Function implication</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/foo.cpp#L3" target="_blank">tests-integration/projects/basic/foo.cpp:3</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-1bb1a5e571e24eebc94d2572ab385ee34e338995'>example.req_implication</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item cpp foo.cpp:exclusive_or:9 -->
<div class="item-missing" id="item-a59e5952bd9a2f7bb8592b7645968e08f73a9037">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> C/C++ Function exclusive_or</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/foo.cpp#L9" target="_blank">tests-integration/projects/basic/foo.cpp:9</a>
</div>
<div class="attribute">
<div>Issues:
<ul>
<li>missing up reference</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item cpp foo.cpp:potato:14 -->
<div class="item-missing" id="item-1fcf699056a4c10fafba408751855a62d76a2fc2">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 520 516" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-137 -85)"><path d="M162 506 397 113 632 506Z" stroke="#000000" stroke-width="27.5" stroke-miterlimit="8" fill="#FF9900" fill-rule="evenodd"/><text font-family="Aptos,Aptos_MSFontService,sans-serif" font-weight="700" font-size="202" transform="matrix(1 0 0 1 367.145 423)">!</text></g></svg> C/C++ Function potato</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/foo.cpp#L14" target="_blank">tests-integration/projects/basic/foo.cpp:14</a>
</div>
<div class="attribute">
<div>Issues:
<ul>
<li>unknown tracing target req example.doesnt_exist</li>
<li>missing up reference</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h5>tests-integration/projects/basic/nand.m</h5>
<!-- begin item matlab nand -->
<div class="item-ok" id="item-05717df9b8ee784715376855d7afeabeaa6cd1f5">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> MATLAB Function nand</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/nand.m#L1" target="_blank">tests-integration/projects/basic/nand.m:1</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-3e885dd2f9f061dedab93f44634897ace7f770c8'>example.req_nand</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h5>tests-integration/projects/basic/nor.py</h5>
<!-- begin item python nor.trlc_reference -->
<div class="item-justified" id="item-716e7482019e79473ec2b20555b90c6183ef62a2">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> Python Function nor.trlc_reference</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/nor.py#L5" target="_blank">tests-integration/projects/basic/nor.py:5</a>
</div>
<div class="attribute">
<div>Justifications:
<ul>
<li>helper function</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item python nor.Example.helper_function -->
<div class="item-ok" id="item-44aca84976176f453e178bdd3323e7e9813dcebe">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> Python Method nor.Example.helper_function</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/nor.py#L13" target="_blank">tests-integration/projects/basic/nor.py:13</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Requirement <a href='#item-714c0c22dee57a69c9425cff0c0bd4ca9ebe5d1f'>example.req_nor</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item python nor.Example.nor -->
<div class="item-ok" id="item-4fe151cfc168f08ff6bc308291ecbee34309b652">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> Python Method nor.Example.nor</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/nor.py#L17" target="_blank">tests-integration/projects/basic/nor.py:17</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Requirement <a href='#item-714c0c22dee57a69c9425cff0c0bd4ca9ebe5d1f'>example.req_nor</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h3>Verification and Validation</h3>
<h4 id="sec-840c3e13412933b0e3f7394f4c7fecb0">Verification Test</h4>
<h5>tests-integration/projects/basic/example.json</h5>
<!-- begin item json example.json:XOR Test 1 -->
<div class="item-ok" id="item-2def120304660abe06791056ae3475223a985c2b">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> JSON Test vector example.json:XOR Test 1</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/example.json" target="_blank">tests-integration/projects/basic/example.json</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-5c0948f96e743a0c3ab3c14ecac0f5d10609f324'>example.req_xor</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item json example.json:XOR Test 2 -->
<div class="item-ok" id="item-12cafbcbb11d67c7c95f6dd4fedbb1b79620379c">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> JSON Test vector example.json:XOR Test 2</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/example.json" target="_blank">tests-integration/projects/basic/example.json</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-5c0948f96e743a0c3ab3c14ecac0f5d10609f324'>example.req_xor</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<!-- begin item json example.json:Potato Test 1 -->
<div class="item-justified" id="item-6521c759f3012c6e12859502ce3a27dc8b6a2e14">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> JSON Test vector example.json:Potato Test 1</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/example.json" target="_blank">tests-integration/projects/basic/example.json</a>
</div>
<div class="attribute">
<div>Justifications:
<ul>
<li>Unlinked on purpose</li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h5>tests-integration/projects/basic/nand_test.m</h5>
<!-- begin item matlab nand_test::test_1 -->
<div class="item-ok" id="item-39288653f9b39978deae407a61549f53151857b7">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> MATLAB Test nand_test::test_1</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/nand_test.m#L3" target="_blank">tests-integration/projects/basic/nand_test.m:3</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-3e885dd2f9f061dedab93f44634897ace7f770c8'>example.req_nand</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
<h5>tests-integration/projects/basic/test.cpp</h5>
<!-- begin item gtest ImplicationTest:BasicTest -->
<div class="item-ok" id="item-0c9dd74b464f7be6456f3d14e144ba8b116dc9b3">
<div class="item-name"><svg width="24" height="24" viewBox="0 0 456 461" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-825 -84)"><path d="M839 310.5C839 193.139 934.811 98 1053 98 1171.19 98 1267 193.139 1267 310.5 1267 427.86 1171.19 523 1053 523 934.811 523 839 427.86 839 310.5Z" stroke="#008000" stroke-width="27.5" stroke-miterlimit="8" fill="#4EA72E" fill-rule="evenodd"/><text font-family="Segoe UI Symbol,Segoe UI Symbol_MSFontService,sans-serif" font-weight="400" font-size="202" transform="matrix(1 0 0 1 972.144 378)">✔</text></g></svg> GoogleTest Test ImplicationTest:BasicTest</div>
<div class="attribute">Source:
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
<a href="https://github.com/bmw-software-engineering/lobster/blob/main/tests-integration/projects/basic/test.cpp#L7" target="_blank">tests-integration/projects/basic/test.cpp:7</a>
</div>
<div class="attribute">
<div>Derived from:
<ul>
<li>TRLC Tagged_requirement <a href='#item-1bb1a5e571e24eebc94d2572ab385ee34e338995'>example.req_implication</a></li>
</ul>
</div>
</div>
</div>
<!-- end item -->
</div>
</div>
<script>
window.onscroll = function() {stickyNavbar()};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function stickyNavbar() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>
</body>
</html>