-
Updated
May 20, 2022 - CSS
julialang
Julia is a high-level dynamic programming language designed to address the needs of high-performance numerical analysis and computational science. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library.
Here are 409 public repositories matching this topic...
-
Updated
Jul 15, 2021 - Makefile
-
Updated
May 20, 2022 - Julia
function add_agent!(A::Type{<:AbstractAgent}, model::ABM, properties...; kwargs...)
add_agent!(random_position(model), A, model, properties...; kwargs...)
endIt appears this signature of add_agent! (L294 in space_interaction_API.jl) can't be used with nothing space
MWE:
mutable struct Agent1 <: AbstractAgent
id::Int
end
model = ABM(Agent1)
add_age-
Updated
May 20, 2022 - Julia
-
Updated
May 18, 2022 - Julia
-
Updated
May 5, 2022 - Julia
-
Updated
May 21, 2022 - Julia
-
Updated
May 19, 2022 - Julia
-
Updated
Mar 21, 2022 - Julia
-
Updated
May 9, 2022 - Julia
-
Updated
Jan 10, 2021 - Jupyter Notebook
-
Updated
Dec 20, 2021 - Julia
-
Updated
May 4, 2022 - C++
-
Updated
Dec 7, 2021 - Julia
-
Updated
Jan 9, 2022
-
Updated
Nov 3, 2021 - Python
-
Updated
May 21, 2022 - Julia
-
Updated
Mar 11, 2022 - Julia
-
Updated
Jun 6, 2020 - Julia
-
Updated
Feb 16, 2022 - Jupyter Notebook
-
Updated
Jan 11, 2022
-
Updated
May 10, 2022 - Jupyter Notebook
Named rules
We should be able to attach names to rules, so that normalization steps (and error messages?) can be better understood by users. For example:
normalize(@term(diff(x + y, x)))
- @term(diff(x,x) + diff(y,x)) by sum rule in differentiation
- @term(one(x) + diff(y, x)) by linear rule of differentiation
- @term(1 + diff(y, x)) by multiplicative identity of a number
- @term(1 + zero(x))
-
Updated
May 19, 2022 - Julia
Domain-wall fermions
The current code does not support the domain-wall fermion, which
is widely used in lattice QCD.
The code has Wilson fermion and the domain-wall fermion can be realized by
multiple of Wilson fermions.
Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman
Released February 14, 2012
- Organization
- JuliaLang
- Website
- julialang.org
- Wikipedia
- Wikipedia
The example is simple:
Was trying to define a Dynamical system. And: