Skip to content

Commit

Permalink
remove undefined exports
Browse files Browse the repository at this point in the history
  • Loading branch information
khosravipasha committed Sep 30, 2020
1 parent 90e8225 commit dce95d3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 4 additions & 1 deletion src/LoadSave/data_loaders.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
export mnist, sampled_mnist, twenty_datasets, twenty_dataset_names, dataset
export mnist,
sampled_mnist,
twenty_datasets,
twenty_dataset_names

using MLDatasets
using CSV
Expand Down
2 changes: 1 addition & 1 deletion src/Utils/data.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import CUDA: CuVector, CuMatrix
export num_examples, num_features,
example, feature_values,
iscomplete, isfpdata, isbinarydata,
num_chunks, chunk, eltype,
num_chunks, chunks, eltype,
shuffle_examples, batch, threshold, soften,
to_gpu, to_cpu, isgpu, same_device,
ll_per_example, bits_per_pixel
Expand Down
3 changes: 2 additions & 1 deletion src/bit_circuit.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using CUDA

export NodeIds, ⋁NodeIds, ⋀NodeIds, BitCircuit,
num_nodes, num_decisions, num_elements, num_leafs, num_features, nodes, elements,
num_nodes, num_elements, num_leafs, num_features,
nodes, elements,
has_single_child, sibling

#####################
Expand Down
6 changes: 3 additions & 3 deletions src/structured/abstract_vtrees.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export Vtree, vtree, variable, find_leaf,
varsubset, varsubset_left, varsubset_right, lca_vtree, depth,
respects_vtree,
top_down_vtree, bottom_up_vtree
varsubset, varsubset_left, varsubset_right,
depth,
respects_vtree

import Base: parent, in # extend
import .Utils: find_leaf, find_inode, lca, depth # extend
Expand Down

0 comments on commit dce95d3

Please sign in to comment.