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

tripping with a monadic action #374

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Feb 20, 2020

  1. tripping with monad

    ersran9 committed Feb 20, 2020
    Configuration menu
    Copy the full SHA
    6142fce View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2020

  1. doc for trippingM

    ersran9 committed Feb 22, 2020
    Configuration menu
    Copy the full SHA
    3dba58a View commit details
    Browse the repository at this point in the history

Commits on May 23, 2022

  1. Don't drop actions depending on shrunk predecessors. (hedgehogqa#453)

    Closes hedgehogqa#448. Suppose we have an Action list
    
        A 1 -> Var 0
        B (Var 0) -> ...
    
    Then when we shrink A, we would previously get the list
    
        A 0 -> Var 1
        B (Var 0) -> ...
    
    And then we'd drop B from this list, because `Var 0` no longer exists.
    Now shrinking will give
    
        A 0 -> Var 0
        B (Var 0) -> ...
    
    which is fine.
    
    This means we now generate Vars even for actions whose `Require` fails.
    ChickenProp authored May 23, 2022
    Configuration menu
    Copy the full SHA
    20c4774 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2022

  1. tripping with monad

    ersran9 committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    748a6e8 View commit details
    Browse the repository at this point in the history
  2. doc for trippingM

    ersran9 committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    24d1612 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    297e503 View commit details
    Browse the repository at this point in the history