Class AssertionChecker

java.lang.Object
pascal.taie.analysis.pta.plugin.assertion.AssertionChecker
All Implemented Interfaces:
Plugin

public class AssertionChecker extends Object implements Plugin
Implements a mechanism for checking pointer analysis assertions. This mechanism is used for testing pointer analysis.
  • Constructor Details

    • AssertionChecker

      public AssertionChecker()
  • Method Details

    • setSolver

      public void setSolver(Solver solver)
      Description copied from interface: Plugin
      Sets pointer analysis solver which will be used later by the plugin.
      Specified by:
      setSolver in interface Plugin
    • onStart

      public void onStart()
      Description copied from interface: Plugin
      Invoked when pointer analysis starts.
      Specified by:
      onStart in interface Plugin
    • onFinish

      public void onFinish()
      Description copied from interface: Plugin
      Invoked when pointer analysis finishes. Pointer analysis is supposed to have been finished at this stage, thus this call back should NOT modify pointer analysis results.
      Specified by:
      onFinish in interface Plugin