├── .gitignore ├── .ruby-version ├── README.md ├── artificial_neural_networks ├── Elixir.NeuralNetwork.Neuron.beam ├── Elixir.NeuralNetwork.beam └── neural_network.ex ├── bfs.exs ├── concurrent_search.exs ├── data └── investment │ └── options.txt ├── generate_and_test.exs ├── random_people_generator_script.rb └── ucs.exs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/README.md -------------------------------------------------------------------------------- /artificial_neural_networks/Elixir.NeuralNetwork.Neuron.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/artificial_neural_networks/Elixir.NeuralNetwork.Neuron.beam -------------------------------------------------------------------------------- /artificial_neural_networks/Elixir.NeuralNetwork.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/artificial_neural_networks/Elixir.NeuralNetwork.beam -------------------------------------------------------------------------------- /artificial_neural_networks/neural_network.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/artificial_neural_networks/neural_network.ex -------------------------------------------------------------------------------- /bfs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/bfs.exs -------------------------------------------------------------------------------- /concurrent_search.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/concurrent_search.exs -------------------------------------------------------------------------------- /data/investment/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/data/investment/options.txt -------------------------------------------------------------------------------- /generate_and_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/generate_and_test.exs -------------------------------------------------------------------------------- /random_people_generator_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/random_people_generator_script.rb -------------------------------------------------------------------------------- /ucs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQuengineer/ai_algorithms_in_elixir/HEAD/ucs.exs --------------------------------------------------------------------------------