File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ module KindPredicatesLog {
270
270
else result = "<Summary event>"
271
271
}
272
272
273
- Array getRa ( string ordering ) { result = this .getObject ( "ra" ) .getArray ( ordering ) }
273
+ Array getRA ( string ordering ) { result = this .getObject ( "ra" ) .getArray ( ordering ) }
274
274
}
275
275
276
276
class SentinelEmpty extends SummaryEvent {
@@ -334,7 +334,7 @@ module KindPredicatesLog {
334
334
* Gets the RA for this event. Unlike recursive predicates, a COMPUTE_SIMPLE
335
335
* event only has one pipeline ordering (and it's named "pipeline").
336
336
*/
337
- Array getRa ( ) { result = this .getObject ( "ra" ) .getArray ( "pipeline" ) }
337
+ Array getRA ( ) { result = this .getObject ( "ra" ) .getArray ( "pipeline" ) }
338
338
}
339
339
340
340
class ComputeRecursive extends SummaryEvent {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ predicate extractInformation(
37
37
pragma [ only_bind_out ] ( tuples .getFloat ( pipelineIndex ) ) = maxTupleCount and
38
38
tuples = run .getCounts ( ) and
39
39
duplicationPercentages = run .getDuplicationPercentage ( ) and
40
- ra = simple .getRa ( )
40
+ ra = simple .getRA ( )
41
41
)
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments