File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3680,8 +3680,8 @@ private void test(
36803680 Map <Integer , Set <TensorType >> expectedTensorParameterValueNumberToTypes )
36813681 throws ClassHierarchyException , CancelException , IOException {
36823682 List <File > pathFiles = this .getPathFiles (pythonPath );
3683- PythonTensorAnalysisEngine E = makeEngine (pathFiles , projectFilenames );
3684- PythonSSAPropagationCallGraphBuilder builder = E .defaultCallGraphBuilder ();
3683+ PythonTensorAnalysisEngine engine = makeEngine (pathFiles , projectFilenames );
3684+ PythonSSAPropagationCallGraphBuilder builder = engine .defaultCallGraphBuilder ();
36853685
36863686 addPytestEntrypoints (builder );
36873687
@@ -3697,10 +3697,10 @@ private void test(
36973697 LOGGER .fine ("Call graph:\n " + CG );
36983698 }
36993699
3700- TensorTypeAnalysis analysis = E .performAnalysis (builder );
3700+ TensorTypeAnalysis analysis = engine .performAnalysis (builder );
37013701 LOGGER .info ("Tensor analysis: " + analysis );
37023702
3703- Map <PointerKey , AnalysisError > errors = E .getErrors ();
3703+ Map <PointerKey , AnalysisError > errors = engine .getErrors ();
37043704
37053705 errors .forEach (
37063706 (k , v ) ->
You can’t perform that action at this time.
0 commit comments