-
From google spreadsheet which no one reads `X-(`
```
sage: sum(lcm(10,x), x, 1, 10) # Incorrect
550
sage: sum([lcm(10,i) for i in xrange(1,11)]) # Correct
320
```
CC: @kcrisman @sagetrac-kbaut…
-
Minecraft added biomes in 1.7.2. Looks like I should do the same.
Short-term fix: update the pymclevel checkout, that should at least provide placeholder values.
Long-term fix: separate the Terrain…
-
```
What steps will reproduce the problem?
1. >>> B = Bezier([(0.0, 0.0), (0.0, 1.0), (1.0, 1.0)])
2. B(0.5) or any other value between 0 and 1
What is the expected output? What do you see instead?
n…
-
x range is not defiend see the repo in demp.py
-
I have a minimal example reproducing a bug with linked axis and setting limits on them.
In this example when you click the focus button both plot series are searched for the min and max values in y…
-
The invisible characters are something important too =)
From https://pastebin.com/1aR1ivaR
```python
import unicodedata, re
all_chars = (unichr(i) for i in xrange(0x110000))
control_chars =…
-
from numpy import exp, array, random, dot
training_set_inputs = array([[0, 0, 1], [1, 1, 1], [1, 0, 1], [0, 1, 1]])
training_set_outputs = array([[0, 1, 1, 0]]).T
random.seed(1)
synaptic_weights =…
-
I was wondering if you could give the trained weights file in the 'release'?
-
```
This originally was a segfault issue, but in trying to reproduce it I got a
different error. I'll release the original source in a few weeks.
Anyway, here's a case:
def map_fail(config):
#a…
-
It would be good to make a few changes for Python 3.
`range` instead of `xrange` and `print` as a function.
In lines 49 to 56:
```
for _ in range(d):
table = array.array("…