-
def __mul__(self, other):
other = other if isinstance(other, Value) else Value(other)
out = Value(self.data * other.data, (self, other), '*')
def _backward():
…
-
We have the interpolation, which means we can easily integrate the interpolation on each interval. Analogous to the derivatives,
```julia
sol(t,Val{-1})
```
can give the integral of the inter…
-
We use η-expansion in PTS. Is this safe? Apparently, there are some strange issues with **η-reduction** in PTSs.
Hindley's and Seldin's "Lambda-Calculus and Combinators: an Introduction" discusses so…
-
The sample article mentions that an aside can be designated as historical
or biographical. Actual examples should be given, illustrating the point of
those designations. For example, a biography o…
-
The [LaTeXML](https://github.com/brucemiller/LaTeXML) project attempts to convert LaTeX code to html documents. If this could be made to work with Asymptote, and in particular with WebGL output, it mi…
-
I want to have categories be hierarchical, so that a category _can_ have a parent category (which can have a parent category, etc.)
Syntactically I think `::` would make the most sense.
You'd have…
-
Does not below two ways equal?
``` python
class Foo(object):
def __enter__(self):
print "hello, world"
def __exit__(self, type, value, tb):
print "bye"
with Foo() as foo:
…
-
## Home Page
- **Start Budgeting** -> Should link to the application.
- **Get Involved** -> Get involved page// If not get involved page then it should go to the TypeForm https://victoria283.ty…
-
It would be quite incredible if one could make the finite difference coefficients handle vector-valued functions/operators well. For example, the Jacobian.
One difficulty will be that the number o…
-
when implementing the superposition stuff can be avoided, imo it should, when it works, we can start to optimize perfomance..., maybe we get fast enough that the not-complete-lazyness of lambda buildi…
fogti updated
2 years ago