@@ -50,11 +50,13 @@ <h4 id="subcap"></h4>
50
50
< button id ="MAQ_3_2 " onclick ="start_again(3,2) "> MAQ(3,2)</ button >
51
51
< button id ="MAQ_7_1 " onclick ="start_again(7,1) "> MAQ(7,1)</ button >
52
52
< button id ="MAQ_15_0 " onclick ="start_again(15,0) "> MAQ(15,0)</ button >
53
+ < button id ="MAQ_1_0 " onclick ="start_again(1,0) "> MAQ(1,0)</ button >
54
+ < button id ="MAQ_0_0 " onclick ="start_again(0,0) "> MAQ(0,0) corner case</ button >
53
55
< br >
54
56
< button id ="enqueue " onclick ="remark(null); enqueue() "> < b > Enqueue</ b > </ button >
55
57
< button id ="dequeue " onclick ="remark(null); dequeue() "> < b > Dequeue</ b > </ button >
56
58
< button id ="enqueue_dequeue " onclick ="remark(null); enqueue(); dequeue() "> < b > Enqueue + Dequeue</ b > </ button >
57
- < button id ="play_scenario " onclick ="play_scenario() "> < b > Play a scenario with microbursts on enqueue side</ b > </ button >
59
+ < button id ="play_scenario " onclick ="play_scenario() "> < b > Play a scenario with microbursts on the Enqueue side</ b > </ button >
58
60
< div id ="rem "> </ div >
59
61
60
62
< script >
@@ -233,7 +235,7 @@ <h4 id="subcap"></h4>
233
235
let testNextWriterIx = writerIx
234
236
235
237
test_next:
236
- for ( ; ( 0 != testNextWriterRix ) && ( ( firstArraySize << testNextWriterRix ) == ( 1 + testNextWriterIx ) ) ; )
238
+ for ( ; ( ( 0 != testNextWriterRix ) && ( ( firstArraySize << testNextWriterRix ) == ( 1 + testNextWriterIx ) ) ) ; )
237
239
{
238
240
tmpRix = testNextWriterRix
239
241
testNextWriterRix = diversions [ tmpRix - 1 ] . rix // follow the diversion back
@@ -404,6 +406,8 @@ <h4 id="subcap"></h4>
404
406
document . getElementById ( "MAQ_3_2" ) . disabled = disabled
405
407
document . getElementById ( "MAQ_7_1" ) . disabled = disabled
406
408
document . getElementById ( "MAQ_15_0" ) . disabled = disabled
409
+ document . getElementById ( "MAQ_1_0" ) . disabled = disabled
410
+ document . getElementById ( "MAQ_0_0" ) . disabled = disabled
407
411
document . getElementById ( "enqueue" ) . disabled = disabled
408
412
document . getElementById ( "dequeue" ) . disabled = disabled
409
413
document . getElementById ( "enqueue_dequeue" ) . disabled = disabled
0 commit comments