Skip to content
#

science

Here are 1,531 public repositories matching this topic...

julia
CameronBieganek
CameronBieganek commented Feb 21, 2020

Do we expect the following syntax to work?

julia> [Int, Float64, String, Bool] .<: Union{Int, String}
ERROR: syntax: space not allowed after ":" used for quoting

It works if you call <: as a broadcasted function:

julia> (<:).([Int, Float64, String, Bool], Union{Int, String})
4-element BitArray{1}:
 1
 0
 1
 0

Version info:

Julia Versio
1samhay
1samhay commented Feb 11, 2020

The Heaviside function should be built in, but the following code throws the error Name Heaviside not defined. Trying to define Heaviside myself did nothing - based on the Traceback I guess it should be defined within lambdifygenerated.

from sympy import *
from IPython.display import display
mux, s, Px, Py, Pxe, Pye = symbols("mu_X s P_X P_Y P_X^* P_Y^*", positive=True)
vx,
ivan-aksamentov
ivan-aksamentov commented Mar 17, 2020

In order to perform refactoring and to add new features with more confidence, we need unit, integration and end-to-end tests for:

  • algorithm parts. Seesrc/algorithms

  • React parts - components and pages. See src/components and src/pages

  • State management: redux reducers and sagas. See src/state

The infrastructure:

  • jest and @testing-libraryare already set up. Un

Improve this page

Add a description, image, and links to the science topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the science topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.