Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/Fuzzy.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
module Fuzzy
baremodule Fuzzy

# We use the name `eval`, which is ordinarily reserved for the implicitly
# added eval/include functions. To avoid having julia add these names, we
# use `baremodule` above and add back the Base imports here.
using Base
include(args...) = Base.include(Fuzzy, args...)

export TriangularMF, GaussianMF, BellMF, TrapezoidalMF, SigmoidMF

Expand Down