Skip to content
This repository has been archived by the owner on May 25, 2021. It is now read-only.

Latest commit

 

History

History
46 lines (35 loc) · 1019 Bytes

notes.md

File metadata and controls

46 lines (35 loc) · 1019 Bytes

+++ title = "Notes" +++

Notes

\toc

Failed PRs

Stale

Closed

Ease of validation

Generally, rewrites which can easily be validated seem to be more appreciated. For example, compare rewriting 26 occurrences of

f(a, b; c = c)

to

f(a, b; c)

at JuliaDynamics/Agents.jl#357 with rewriting 2 occurrences of

findall(x -> x == false, matches)

to

findall(!, matches)

at https://github.com/JuliaDynamics/Agents.jl/pull/358/files.

Clearly, the former is much bigger, but easier to validate.

Size of rewrite

Unless the rewrite is easy to validate, bigger rewrites are less likely to be merged.