Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for differential analyses #77

Open
wants to merge 1 commit into
base: next
Choose a base branch
from

Commits on Aug 22, 2020

  1. bin:analyse: add support for differential analyses

    Previously analyse compared all patches under consideration disregarding
    previous evaluation results.
    This patch adds a new differential flag that utilises the existing
    evaluation results and only compares the newly added patches to the
    existing ones, reducing the number of comparisons.
    
    The differential evaluation process can be explained as follows:
    
    result = new_patches X existing_patches + new_patches X new_patches
    = new_patches X (new_patches + existing_patches)
    = new_patches X victims
    
    Signed-off-by: Rohit Sarkar <[email protected]>
    rsarky committed Aug 22, 2020
    Configuration menu
    Copy the full SHA
    5f9d088 View commit details
    Browse the repository at this point in the history