Shark 2.3.2
SHARK is a modular C++ library for the design and optimization of adaptive systems. It provides methods for linear and nonlinear optimization, in particular evolutionary and gradient-based algorithms, kernel-based learning algorithms and neural networks, and various other machine learning techniques. SHARK serves as a toolbox to support real world applications as well as research in different domains of computational intelligence and machine learning. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
076af296e5
commit
8c5c681d7d
1 changed files with 15 additions and 0 deletions
15
Formula/shark.rb
Normal file
15
Formula/shark.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
require 'formula'
|
||||
|
||||
class Shark <Formula
|
||||
url 'http://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.2/shark-2.3.2.tar.bz2'
|
||||
homepage 'http://shark-project.sourceforge.net/'
|
||||
md5 'e149c77b9f9722c93d9fac21b2abee10'
|
||||
|
||||
depends_on 'cmake'
|
||||
|
||||
def install
|
||||
Dir.chdir('cmake')
|
||||
system "cmake . #{std_cmake_parameters}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue