-
Right now in the DSL recursive definitions are disallowed. This mostly makes sense: we don't support general recursion due to everything being fixed space, and we don't have any tail call detection / …
-
We've seen an issue where in a rails request spec we have something like this:
```
it "returns a failure" do
post some_path(**args)
expect(response).to be_created
end
```
In cases where…
-
### Motivation
The simplifier is not very helpful when giving a non-terminating simp set:
```lean
variable (P : Nat → Prop)
/--
error: tactic 'simp' failed, nested error:
maximum recursion d…
-
I cloned the repo and then created a virtual environment and installed requirements.txt.
Now I moved into `examples` directory and tried running `fib.py` . Got this error.
```
Traceback (most r…
-
Here is a sketch of a struct that preallocates all scratch arrays for intermediate representations of functions
```julia
import Base: +
using BenchmarkTools, Test, LinearAlgebra
struct Add{S,T,V}
…
-
```
Your Name:
Overview of Lab Comments: i.e. Was this lab good or bad? Too fast? Too Slow? Does it need something new?
--- For each specific Issue (Copy this section as many times as necessary) ---…
lmock updated
9 years ago
-
## GetFeedback Submission
##### RATING: 3
##### Submission Time: 2014-07-21T17:33:08.459-07:00
##### Page: Self Test: What Was Changed?
##### Course: /~cs10/labs/course/cs10_sp14.html
##### Topic: ber…
-
In this snippet,
``` fsharp
type Digit> * Digit (a: 'a) (tree: FingerTree =
match tree with
| Empty -> Single a
| Single b -> Deep ([a], Empty, [b])
| Deep ([b; c; d; e], m, suffix) -…
-
This is a meta-issue that I’ll use to track my progress in creating a toolkit for faster kernel reduction. This is to help me organize the work, but also to provide more visibility to interested membe…
-
### Describe the workflow you want to enable
I'd love to push the inspection module further by adding Accumulated local effects (ALE) from Apley 2020. A great description can be found in Christoph'…