Coder Social home page Coder Social logo

paralleldebugging's Introduction

ParallelDebugging

Travis

This project provides some representative algorithms in parallel debugging,including Block Diagonal Matrix (BDM), Jones II, Weil-Kettler (hor. W-K, vert. W-K), and Maximum Set Packing(MSP). The first 5 algorithms are implemented by Hogerle et al.. We just release them on github, so it's a good choice to cite their paper as follows,

Hogerle, Wolfgang, F. Steimann, and M. Frenkel. "More Debugging in Parallel." IEEE, International Symposium on Software Reliability Engineering IEEE Computer Society, 2014:133-143.

In addition, we fix some bugs in BDM algorithm and also develop our own partitionning algorithms in parallel debugging, namely XXX, which is provided as the 6-th partition algorithms in the last. To compare the performances among those algorithms we design the contrast experiments which are also contained in our projects.

BDM

BDM is the basic partitioning algorithms among the above 5 algorithms, whose idea is quite simple. It divide the FCM into multiple block diagnoal matrixs whose rows and coloums can not be overlapped. Using BDM in our project is quite simple, you just need to call the static method getBlocks() in class BDM,

Result input = MatrixDataReader.getTestsAndUUTsFromFile("path/to/your/file");
Set<Set<Test>> setTests = BDM.getBlocks(input);

Jones II

Jones II is the second algorithom proposed by Jones et al. Jones II is a cluster-based partitioning algorithm, it has two main steps in test cases clustering:

  • Constructing multiple test suites consisting of each single failed test cases and all passed test cases,
  • clustering these test suites according to the similarity of susipicious ranking list obtainted by fault localization technique (i.e., Tanrantula) in each suites.

Using Jones II is also quite easy you only need to call the function getBlocks() in class Jones,

Result input = MatrixDataReader.getTestsAndUUTsFromFile("path/to/your/file");
Jones jones = new Jones();
Set<Set<Test>> setTests1 = jones.getBlocks(input); // use default parameters
Set<Set<Test>> setTests2 = jones.getBlocks(input, 0.2, 0.5); // specify your own parameters if you want

Hor.W-K

Vert. W-K

MSP

XXX

paralleldebugging's People

Contributors

gu-youngfeng avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.