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

Version 4.0.0 #523

Draft
wants to merge 89 commits into
base: master
Choose a base branch
from
Draft

Version 4.0.0 #523

wants to merge 89 commits into from

Commits on Feb 15, 2022

  1. f (#413)

    jaypantone authored Feb 15, 2022
    Configuration menu
    Copy the full SHA
    65fe462 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68e001b View commit details
    Browse the repository at this point in the history
  3. point jumping strategy (#412)

    * point jumping strategy
    
    * pylint and flake
    
    * extra param method for counting
    
    * skip test with database that is to slow
    
    Co-authored-by: Émile Nadeau <[email protected]>
    Co-authored-by: Jay Pantone <[email protected]>
    3 people authored Feb 15, 2022
    Configuration menu
    Copy the full SHA
    54a75b3 View commit details
    Browse the repository at this point in the history
  4. requirement and row and col placements strategy pack (#414)

    * requirement and row and col placements strategy pack
    
    * f
    
    * skip test with database that is to slow
    
    Co-authored-by: Émile Nadeau <[email protected]>
    Co-authored-by: Jay Pantone <[email protected]>
    3 people authored Feb 15, 2022
    Configuration menu
    Copy the full SHA
    f6c4b14 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

  1. limit the size of obs in minimal obs call (#418)

    * limit the size of obs in minimal obs call
    
    * if no obs, can't infer obs
    christianbean authored Feb 22, 2022
    Configuration menu
    Copy the full SHA
    8150b73 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e1da37c View commit details
    Browse the repository at this point in the history
  3. Deflation (#416)

    * resurrecting old deflation strategy
    
    * Add get equation method in the easy case
    
    * add test for json/repr methods
    
    * remove the skew/sum indec condition
    
    * unused import
    christianbean authored Feb 22, 2022
    Configuration menu
    Copy the full SHA
    82cad6c View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2022

  1. Configuration menu
    Copy the full SHA
    0de2314 View commit details
    Browse the repository at this point in the history
  2. add empty cell obs during placement (#423)

    * add empty cell obs during placement
    
    * CHANGELOG.md
    
    * update partial placement test
    
    * updating black version
    
    * black formatting
    christianbean authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    8c275cc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    de27640 View commit details
    Browse the repository at this point in the history
  4. Selective symmetries (#420)

    * a selective symmetry factory
    
    * replace symmetries with this new class, default to all syms
    
    * no basis given = all syms
    
    * mypy
    
    * changelog
    
    Co-authored-by: Jay Pantone <[email protected]>
    Co-authored-by: Émile Nadeau <[email protected]>
    3 people authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    6cf95b4 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2022

  1. monotone sliding (#417)

    * an alternative sliding strategy based on a fusion argument
    
    * add encoding tests
    
    * if a column, then rotate -> slide -> rotate back"
    
    Co-authored-by: Émile Nadeau <[email protected]>
    christianbean and enadeau authored Mar 8, 2022
    Configuration menu
    Copy the full SHA
    c27a174 View commit details
    Browse the repository at this point in the history
  2. a targeted cell insertion strategy (#421)

    * a targeted cell insertion strategy
    
    * test the encoding
    
    * remove double import
    
    * circular import
    
    * Update requirement_insertion.py
    
    * disable import order warning
    
    * actually also need to make the import comply to isort
    
    * allow a list as input to strategy
    
    Co-authored-by: Émile Nadeau <[email protected]>
    christianbean and enadeau authored Mar 8, 2022
    Configuration menu
    Copy the full SHA
    9863668 View commit details
    Browse the repository at this point in the history
  3. No Root Cell verification (#422)

    * Actually adding the files this time
    
    * Pleasing black
    
    * tidying up
    
    * update string method, test
    
    * mypy
    
    * formal step test
    
    * Revert "formal step test"
    
    This reverts commit fd41137.
    
    * formal step test
    
    Co-authored-by: Christian Bean <[email protected]>
    ulfarsson and christianbean authored Mar 8, 2022
    Configuration menu
    Copy the full SHA
    e4cc309 View commit details
    Browse the repository at this point in the history
  4. Point corroboration (#426)

    * a point corroboration factory
    
    * change to insert into any pair of cells which can not be mutually positive
    
    * mypy
    
    * remove positive corroboration from bijection packs
    
    * remove unused import
    
    * README.rst
    
    * removing strategy from bijections test, and increasing timeout on forest test
    christianbean authored Mar 8, 2022
    Configuration menu
    Copy the full SHA
    0399050 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0ec3b0d View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2022

  1. allows swapping points or assumptions alone (#429)

    * allows swapping points or assumptions alone
    
    * fixing tests
    
    * add flags
    christianbean authored Mar 10, 2022
    Configuration menu
    Copy the full SHA
    eafa696 View commit details
    Browse the repository at this point in the history
  2. adding init flags (#430)

    * adding init flags
    
    * remove test for fused tiling when unfusable
    christianbean authored Mar 10, 2022
    Configuration menu
    Copy the full SHA
    c7c2af6 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2022

  1. the cell reduction strategy (#428)

    * the cell reduction strategy
    
    * manually change local basis to monotone in non finite cells, forbid if ob touches row and col
    christianbean authored Mar 22, 2022
    Configuration menu
    Copy the full SHA
    bf402ef View commit details
    Browse the repository at this point in the history
  2. Improving initialiser (#432)

    * add a timer to init to catch slow initialising
    
    * add a heuristic to avoid large products
    
    * change pattern placement to factor sooner
    
    * an actual solution? Pick the product smarter.
    
    * tidying up
    
    * tidy up cleaned obs to reduce size of product
    christianbean authored Mar 22, 2022
    Configuration menu
    Copy the full SHA
    599c92e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1991825 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2022

  1. Point corroboration (#434)

    * point corrob
    
    * cleaning
    
    * tidying code
    
    * remove point in bijections
    christianbean authored Mar 23, 2022
    Configuration menu
    Copy the full SHA
    da04aa4 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2022

  1. test reqs separately (#437)

    * test reqs separately
    
    * not
    christianbean authored Mar 29, 2022
    Configuration menu
    Copy the full SHA
    374d9a4 View commit details
    Browse the repository at this point in the history
  2. allow reqs, and more careful point in between (#436)

    * allow reqs, and more careful point in between
    
    * pylint
    
    * api.combopal -> api.permpal
    christianbean authored Mar 29, 2022
    Configuration menu
    Copy the full SHA
    ec52ee3 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2022

  1. make not implemented reverse constructor for interleaving factor (#441)

    * make not implemented reverse constructor for interleaving factor
    
    * update black version
    enadeau authored Apr 7, 2022
    Configuration menu
    Copy the full SHA
    02b3fc2 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2022

  1. Configuration menu
    Copy the full SHA
    0731232 View commit details
    Browse the repository at this point in the history
  2. kitchen_sinkify (#435)

    * creates kitchen_sinkify function
    
    * don't add short obs or obs inferral if the arguments passed are 0
    
    * fixes CHANGELOG
    
    * adds DB verified and req corrob
    
    * tell pylint to go think about it more
    
    * add test of kitchen sinkify pack json
    
    Co-authored-by: Christian Bean <[email protected]>
    jaypantone and christianbean authored Apr 19, 2022
    Configuration menu
    Copy the full SHA
    7f899b2 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2022

  1. New collect_before decorator for some test.

    Now that we do strategic garbage collection in some of our code some
    test where timing out because the gc.collect() call where taking to
    long. I introduced a new decorator to collect before those test to avoid
    triggering out the timeout.
    enadeau committed Apr 20, 2022
    Configuration menu
    Copy the full SHA
    b29bb32 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #444 from PermutaTriangle/collect-before

    New collect_before decorator for some test.
    enadeau authored Apr 20, 2022
    Configuration menu
    Copy the full SHA
    413955e View commit details
    Browse the repository at this point in the history
  3. Updating component assumptions (#443)

    * use cell decomposition for uniting cells in factor
    
    * add component verification and add it to packs
    
    * ignore component assumptions in rearrange
    
    * more selective when verifying tilings with components
    
    * flipping sum and skew in symmetry strategies
    
    * if sum fusion, no skew assumption in region and vice versa
    
    * checking assumptions in comp fusion fusable check
    
    * not implemented counting for positive or empty fusion
    
    * ensure make_tracked adds component strategies
    
    * smarter is_component method to impove DetectComponentsStrategy
    
    * get_minimum_value changed for comp ass since can have fewer components than points
    
    * CHANGELOG.md
    
    * allow comp in monotone and insertion verified
    
    * component -> point assumption strategy
    
    * verification test packs allow comps in insenc and monotone
    christianbean authored Apr 20, 2022
    Configuration menu
    Copy the full SHA
    7095524 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2022

  1. Configuration menu
    Copy the full SHA
    609a9c8 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2022

  1. fix from dict (#446)

    * fix from dict
    
    * fix to_jsonable
    christianbean authored Apr 27, 2022
    Configuration menu
    Copy the full SHA
    d69ae21 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2022

  1. ass.__class__ (#447)

    christianbean authored Apr 28, 2022
    Configuration menu
    Copy the full SHA
    a745c1f View commit details
    Browse the repository at this point in the history

Commits on May 3, 2022

  1. Configuration menu
    Copy the full SHA
    c6c0096 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5e4fb85 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c345d85 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2022

  1. remove AddInterleavingAssumptionsFactory (#451)

    * remove AddInterleavingAssumptionsFactory
    
    * allow untracked interleaving
    
    * self.
    christianbean authored May 4, 2022
    Configuration menu
    Copy the full SHA
    27506a6 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2022

  1. Configuration menu
    Copy the full SHA
    b153a51 View commit details
    Browse the repository at this point in the history
  2. pointing strategy, unfusion strategy, disjoint fusion strategy, a dum…

    …my strategy, and allowing directionless pp (#453)
    
    * pointing strategy, a dummy strategy, and allowing directionless pp
    
    * add json encoding test
    
    * mypy and pylint
    
    * CHANGELOG.md
    
    * unfusion strategy
    
    * factory
    
    * the disjoint fusion strategy
    
    * changelog and add to kitchen sink
    
    * added counting code
    
    * implement counting with params for unfusion and pointing
    
    * pointing subtracts already placed cells
    christianbean authored May 6, 2022
    Configuration menu
    Copy the full SHA
    1f5371e View commit details
    Browse the repository at this point in the history
  3. reversible if parent has all the assumptions for interleaving (#456)

    * reversible if parent has all the assumptions for interleaving
    
    * unused import
    christianbean authored May 6, 2022
    Configuration menu
    Copy the full SHA
    1a29f91 View commit details
    Browse the repository at this point in the history
  4. small bugs in interleaving factors (#458)

    * fix the param when generating objects
    
    * remove empty cells when mapping assumption in interleaving factors
    
    * remove outdated todo
    christianbean authored May 6, 2022
    Configuration menu
    Copy the full SHA
    f0374ca View commit details
    Browse the repository at this point in the history

Commits on May 9, 2022

  1. Configuration menu
    Copy the full SHA
    be81c6b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a99c28 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    71e2aa8 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2022

  1. Configuration menu
    Copy the full SHA
    8683ea8 View commit details
    Browse the repository at this point in the history
  2. a strategy for placing points of assumptions (#462)

    * a strategy for placing points of assumptions
    
    * make sure to do this on point tracking assumptions
    christianbean authored May 10, 2022
    Configuration menu
    Copy the full SHA
    ce22e54 View commit details
    Browse the repository at this point in the history
  3. a factory for placing into rows and cols that are fusable (#464)

    * a factory for placing into rows and cols that are fusable.
    
    * __str__
    
    * test encoding
    
    * adds to kitchen sink
    
    Co-authored-by: Jay Pantone <[email protected]>
    christianbean and jaypantone authored May 10, 2022
    Configuration menu
    Copy the full SHA
    55a6ea9 View commit details
    Browse the repository at this point in the history
  4. Remove assumptions (#465)

    * add assumption reversible when assumption covers whole tiling
    
    * check the assumptions being added
    
    * add a test for is reversible on assumption insertion
    christianbean authored May 10, 2022
    Configuration menu
    Copy the full SHA
    244371d View commit details
    Browse the repository at this point in the history

Commits on May 12, 2022

  1. fix json and repr encoding of interleaving factor strategy (#469)

    * fix json and repr encoding
    
    * remove dead code
    enadeau authored May 12, 2022
    Configuration menu
    Copy the full SHA
    aa7b79c View commit details
    Browse the repository at this point in the history

Commits on May 17, 2022

  1. a requirement pointing strategy (#466)

    * a requirement pointing strategy
    
    * allow for directionless placement of gp into all cells, so divide by N
    
    * only point at reqs on tilings
    christianbean authored May 17, 2022
    Configuration menu
    Copy the full SHA
    6499428 View commit details
    Browse the repository at this point in the history
  2. add remove constructor (#470)

    * add remove constructor
    
    * fix equation
    
    * remove unused import
    
    * remove print
    christianbean authored May 17, 2022
    Configuration menu
    Copy the full SHA
    565243e View commit details
    Browse the repository at this point in the history

Commits on May 24, 2022

  1. Configuration menu
    Copy the full SHA
    af6b774 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2022

  1. All at once obstruction inferral (#467)

    * first draft, mostly copying SubclassVerification.compute_subclasses
    
    * remove prints and tidy
    
    * update test
    
    * Obs inf early yield (#472)
    
    * adds yield_non_minimal flag to obs inf
    
    * adds typing and sets to True
    
    Co-authored-by: jaypantone <[email protected]>
    christianbean and jaypantone authored Jun 1, 2022
    Configuration menu
    Copy the full SHA
    ffdd84c View commit details
    Browse the repository at this point in the history
  2. full-tiling assumptions do not count against the max_assumptions cap (#…

    …474)
    
    * full-tiling assumptions do not count against the max_assumptions cap
    
    * changelog
    jaypantone authored Jun 1, 2022
    Configuration menu
    Copy the full SHA
    3fab1c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2022

  1. more flags for pointing (#475)

    * adds flags to PointingStrategy and AssumptionPointingStrategy; also adds RequirementPointingStrategy to kitchen sink
    
    * fixes reprs, from_dicts, to_jsonables
    
    * fixes from_dict bugs from max_cell argument
    
    * Bug fixes
    
    * better __str__s
    jaypantone authored Jun 7, 2022
    Configuration menu
    Copy the full SHA
    0b9056f View commit details
    Browse the repository at this point in the history
  2. adds flag to allow factorable requirement insertions, default = False (

    …#473)
    
    * adds flag to allow factorable requirement insertions, default = False
    
    * changelog and default set to True
    jaypantone authored Jun 7, 2022
    Configuration menu
    Copy the full SHA
    1804639 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Small bug (#480)

    * small bug in initialiser
    
    * add a test
    christianbean authored Jun 14, 2022
    Configuration menu
    Copy the full SHA
    9c66582 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2022

  1. Configuration menu
    Copy the full SHA
    1fce660 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    947e19a View commit details
    Browse the repository at this point in the history
  3. one by one looks up permpal (#483)

    * one by one looks up permpal
    
    * remove cached property
    
    * more detailed error messages
    christianbean authored Jun 15, 2022
    Configuration menu
    Copy the full SHA
    d43284c View commit details
    Browse the repository at this point in the history
  4. reverse fusion uses divide by k (#484)

    * reverse fusion uses divide by k
    
    * mypy
    christianbean authored Jun 15, 2022
    Configuration menu
    Copy the full SHA
    4910542 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2022

  1. Configuration menu
    Copy the full SHA
    31fcbc5 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. stop expanding av(012), and return invalid op for comp ver (#487)

    * stop expanding av(012), and return invalid op for comp ver
    
    * remove outdated test
    
    * flake
    
    Co-authored-by: Jay Pantone <[email protected]>
    christianbean and jaypantone authored Jun 29, 2022
    Configuration menu
    Copy the full SHA
    28a61f8 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. change error to logging check (#489)

    * change error to logging check
    
    * Update test_reverse_fusion.py
    christianbean authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    8b7827f View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. Configuration menu
    Copy the full SHA
    cc9927a View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. ensure obs are minimised in point placements (#494)

    * ensure obs are minimised in point placements
    
    * changelog
    christianbean authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    9ac5814 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2022

  1. Work in process getting rid of the new warnings (#497)

    * Work in process getting rid of the new warnings
    
    * Updating black version in the pre-commit file
    
    * fixing pylint
    
    * Fixing typing errors
    
    * Still fixing typing issues
    
    * No more typing today, thank you
    
    * A few more typing issues taken care of
    
    * A bit of linting
    
    * Pylint is now happy
    
    * Mypy is now happy
    
    * Quick fix for typing error of array
    ulfarsson authored Nov 28, 2022
    Configuration menu
    Copy the full SHA
    8a230e3 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2023

  1. Configuration menu
    Copy the full SHA
    6fb6d38 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2023

  1. Fix and upgrade Github Actions (#500)

    * "pypy3" -> "pypy3.8"
    
    * change default from cpython 3.8 to 3.10 and add pypy3.9
    
    * add quotes
    
    * add more quotes
    
    * MOAR QUOTES
    
    * oops too many quotes
    jaypantone authored Jan 18, 2023
    Configuration menu
    Copy the full SHA
    e002bec View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2023

  1. Sliding bug (#501)

    * add consecutive value condition for sliding
    
    * tidy up
    christianbean authored Jan 19, 2023
    Configuration menu
    Copy the full SHA
    0c64e38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e1e659 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2023

  1. check in decomp func of sliding (#503)

    * check in decomp func of sliding
    
    * changelog
    christianbean authored Jan 20, 2023
    Configuration menu
    Copy the full SHA
    3e16919 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2023

  1. a new pack (#486)

    * a new pack
    
    * add json encoding test
    christianbean authored Jan 24, 2023
    Configuration menu
    Copy the full SHA
    9649292 View commit details
    Browse the repository at this point in the history
  2. Trackedclassdb (#431)

    * a first draft of a tracked classdb
    
    * make default for guided and limited searcher
    
    * adds flags to PointingStrategy and AssumptionPointingStrategy; also adds RequirementPointingStrategy to kitchen sink
    
    * fixes reprs, from_dicts, to_jsonables
    
    * fixes from_dict bugs from max_cell argument
    
    * Bug fixes
    
    * lots of improvements to trackedclassdb
    
    * mypy
    
    * mypy
    
    * mypy
    
    * black
    
    * css now takes classdb flag
    
    * use classqueue flag
    
    * fixes the fact that assumption types were completely ignored
    
    * adds one test
    
    * removes some comments
    
    * ignore pylint error
    
    Co-authored-by: Jay Pantone <[email protected]>
    christianbean and jaypantone authored Jan 24, 2023
    Configuration menu
    Copy the full SHA
    3ac3f90 View commit details
    Browse the repository at this point in the history
  3. one by one uses permpal for counting etc (#499)

    * one by one uses permpal for counting etc
    
    * fixed small bug getting rational gfs
    
    * changelog
    
    * only storing 1x1 specs without ass and reqs
    
    * ensure not over correcting for reqs
    
    * simplfy req correction line
    
    * eqs print F_Av(basis)
    christianbean authored Jan 24, 2023
    Configuration menu
    Copy the full SHA
    943263d View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

  1. Configuration menu
    Copy the full SHA
    76bb128 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

  1. fixes bug in sanity checking new 1x1 verification (#506)

    * fixes bug in sanity checking new 1x1 verification
    
    * reuse variable
    jaypantone authored Feb 1, 2023
    Configuration menu
    Copy the full SHA
    ec7bf10 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. Configuration menu
    Copy the full SHA
    5368c86 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2023

  1. implement positive reverse fusion counting (#509)

    * implement positive reverse fusion counting
    
    * If left only and right is positive, then add one to every left parameter
    
    * tidy up tests
    christianbean authored Feb 14, 2023
    Configuration menu
    Copy the full SHA
    b401cba View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2023

  1. make one-based (#512)

    jaypantone authored Feb 22, 2023
    Configuration menu
    Copy the full SHA
    31c3c5c View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. Configuration menu
    Copy the full SHA
    6c9a4f3 View commit details
    Browse the repository at this point in the history
  2. a test for duplicated mapped params in complement (#510)

    * a test for duplicated mapped params in complement
    
    * skip test for incr with assumption
    christianbean authored Feb 28, 2023
    Configuration menu
    Copy the full SHA
    dd3d2ed View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2023

  1. Configuration menu
    Copy the full SHA
    3d6f534 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

  1. a strategy for forcing assumptions to be empty (#513)

    * a strategy for forcing assumptions to be empty
    
    * add relax assumption factory to kitchen sink
    
    * tidy up kitchen sink method
    
    ---------
    
    Co-authored-by: jaypantone <[email protected]>
    christianbean and jaypantone authored Mar 20, 2023
    Configuration menu
    Copy the full SHA
    92ec3a6 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2023

  1. remove break (#518)

    * remove break
    
    * changelog
    jaypantone authored Apr 25, 2023
    Configuration menu
    Copy the full SHA
    606cb69 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. adds kitchen sink levels (#519)

    * adds kitchen sink levels
    
    * change log and tes
    jaypantone authored May 9, 2023
    Configuration menu
    Copy the full SHA
    d484c14 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2023

  1. Shift from spec (#520)

    * the shift fix discussed on 16/05/23
    
    * changelog
    
    * fix imports
    christianbean authored Jun 6, 2023
    Configuration menu
    Copy the full SHA
    a91c628 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c3764f1 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. prepare v4.0.0

    christianbean committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    ee89680 View commit details
    Browse the repository at this point in the history