Giter VIP home page Giter VIP logo

php-sequence-matcher's Introduction

php-sequence-matcher

GitHub Workflow Status (branch) Codacy grade Packagist Packagist Version Project license GitHub stars Donate to this project using Paypal

A longest sequence matcher. The logic is primarily based on the Python difflib package.

Requirements

php

Installation

composer require jfcherng/php-sequence-matcher

Acknowledgment

This package is stripped from chrisboulton/php-diff with some modifications.

php-sequence-matcher's People

Contributors

codacy-badger avatar jfcherng avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

php-sequence-matcher's Issues

Caching Bug

I ran into a runtime bug using the https://github.com/jfcherng/php-diff library.

I dug into the source and narrowed it down to a caching issue. When the SequenceMatcher is re-used, the cache isn't getting properly cleared in some cases.

I managed to reproduce it by changing the "old" value, but not the "new" value. Here's a failing test I wrote:

public function testCachingBug(): void         
{                                           
    $old = ['a'];                           
    $new = ['a', 'b', 'c'];                 
                                            
    $this->sm->setSeq1($old)->setSeq2($new);
                                            
    $old = ['a', 'b'];                      
    $new = ['a', 'b', 'c'];                 
                                            
    $this->sm->setSeq1($old)->setSeq2($new);

    // Throws ErrorException: "Undefined array key 1" 
    $this->sm->getOpcodes();                
}                                           

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.