File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
com.ibm.wala.cast.python.ml/source/com/ibm/wala/cast/python/ml/client Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public RaggedConstant(PointsToSetVariable source) {
5252 super (source );
5353 }
5454
55- private static Set <Integer > getPossibleListLengths (
55+ private static Set <Integer > getPossibleOuterListLengths (
5656 PropagationCallGraphBuilder builder , OrdinalSet <InstanceKey > valuePointsToSet ) {
5757 Set <Integer > ret = HashSetFactory .make ();
5858 PointerAnalysis <InstanceKey > pointerAnalysis = builder .getPointerAnalysis ();
@@ -159,7 +159,8 @@ protected Set<List<Dimension<?>>> getShapesOfValue(
159159 // Step 3: Construct shape with rank K and ragged rank R.
160160
161161 // Get the length of the outer list.
162- Set <Integer > possibleOuterListLengths = getPossibleListLengths (builder , valuePointsToSet );
162+ Set <Integer > possibleOuterListLengths =
163+ getPossibleOuterListLengths (builder , valuePointsToSet );
163164
164165 for (int outerListLength : possibleOuterListLengths ) {
165166 List <Dimension <?>> shape = new ArrayList <>();
You can’t perform that action at this time.
0 commit comments