symengine 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/CMakeLists.txt +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +1 -76
  5. data/README.md +29 -11
  6. data/cmake/FindRuby.cmake +286 -0
  7. data/ext/symengine/CMakeLists.txt +26 -0
  8. data/ext/symengine/extconf.rb +15 -0
  9. data/ext/symengine/ruby_basic.c +254 -0
  10. data/ext/symengine/ruby_basic.h +53 -0
  11. data/ext/symengine/ruby_integer.c +8 -0
  12. data/ext/symengine/ruby_integer.h +8 -0
  13. data/ext/symengine/ruby_rational.c +23 -0
  14. data/ext/symengine/ruby_rational.h +8 -0
  15. data/ext/symengine/ruby_symbol.c +13 -0
  16. data/ext/symengine/ruby_symbol.h +8 -0
  17. data/ext/symengine/symengine.c +49 -0
  18. data/ext/symengine/symengine.h +15 -0
  19. data/ext/symengine/symengine_macros.c +49 -0
  20. data/ext/symengine/symengine_macros.h +21 -0
  21. data/spec/arit_spec.rb +146 -0
  22. data/spec/basic_spec.rb +217 -0
  23. data/spec/integer_spec.rb +56 -0
  24. data/spec/rational_spec.rb +51 -0
  25. data/spec/spec_helper.rb +96 -0
  26. data/spec/symbol_spec.rb +20 -0
  27. data/symengine.gemspec +19 -0
  28. metadata +29 -26
  29. data/lib/symengine/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  30. data/lib/symengine/CMakeFiles/progress.marks +0 -1
  31. data/lib/symengine/CMakeFiles/symengine_ruby.dir/C.includecache +0 -138
  32. data/lib/symengine/CMakeFiles/symengine_ruby.dir/DependInfo.cmake +0 -33
  33. data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.o +0 -0
  34. data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.o +0 -0
  35. data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.o +0 -0
  36. data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.o +0 -0
  37. data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.o +0 -0
  38. data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.o +0 -0
  39. data/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make +0 -241
  40. data/lib/symengine/CMakeFiles/symengine_ruby.dir/cmake_clean.cmake +0 -15
  41. data/lib/symengine/CMakeFiles/symengine_ruby.dir/depend.internal +0 -94
  42. data/lib/symengine/CMakeFiles/symengine_ruby.dir/depend.make +0 -94
  43. data/lib/symengine/CMakeFiles/symengine_ruby.dir/flags.make +0 -8
  44. data/lib/symengine/CMakeFiles/symengine_ruby.dir/link.txt +0 -1
  45. data/lib/symengine/CMakeFiles/symengine_ruby.dir/progress.make +0 -7
  46. data/lib/symengine/CTestTestfile.cmake +0 -6
  47. data/lib/symengine/Makefile +0 -347
  48. data/lib/symengine/cmake_install.cmake +0 -34
  49. data/lib/symengine/symengine.so +0 -0
@@ -0,0 +1,56 @@
1
+ require 'spec_helper'
2
+
3
+ describe SymEngine do
4
+ describe SymEngine::Integer do
5
+ describe '#new' do
6
+ context 'with Integer as argument' do
7
+ it 'gives a new SymEngine::Integer instance' do
8
+ a = SymEngine::Integer.new(123)
9
+ b = SymEngine::Integer.new(-123)
10
+ expect(a).to be_an_instance_of SymEngine::Integer
11
+ expect(b).to be_an_instance_of SymEngine::Integer
12
+ expect(a.to_s).to eq('123')
13
+ expect(b.to_s).to eq('-123')
14
+ c = SymEngine::Integer.new(12_345_678_912_345_678_912)
15
+ expect(c.to_s).to eq('12345678912345678912')
16
+ c = SymEngine::Integer.new(-12_345_678_912_345_678_912)
17
+ expect(c.to_s).to eq('-12345678912345678912')
18
+ end
19
+ end
20
+ end
21
+
22
+ describe 'coercion tests' do
23
+ before :each do
24
+ @a = SymEngine::Symbol.new('x')
25
+ end
26
+
27
+ context 'using a ruby integer as the second operand' do
28
+ it 'succeeds with commutative operations' do
29
+ b = @a * 2
30
+ expect(b).to be_an_instance_of SymEngine::Basic
31
+ expect(b).to eq(SymEngine::Integer.new(2) * @a)
32
+ end
33
+
34
+ it 'succeeds with non commutative operations' do
35
+ b = @a / 2
36
+ expect(b).to be_an_instance_of SymEngine::Basic
37
+ expect(b).to eq(@a / SymEngine::Integer.new(2))
38
+ end
39
+ end
40
+
41
+ context 'using a ruby integer as the first operand' do
42
+ it 'succeeds with commutative operations' do
43
+ b = 2 * @a
44
+ expect(b).to be_an_instance_of SymEngine::Basic
45
+ expect(b).to eq(@a * SymEngine::Integer.new(2))
46
+ end
47
+
48
+ it 'succeeds with non commutative operations' do
49
+ b = 2 / @a
50
+ expect(b).to be_an_instance_of SymEngine::Basic
51
+ expect(b).to eq(SymEngine::Integer.new(2) / @a)
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,51 @@
1
+ require 'spec_helper'
2
+
3
+ describe SymEngine do
4
+ describe SymEngine::Rational do
5
+ describe '.new' do
6
+ context 'with a Ruby Rational object as input' do
7
+ it 'returns an instance of SymEngine::Rational class' do
8
+ a = Rational('2/3')
9
+ a = SymEngine::Rational.new(a)
10
+ expect(a).to be_an_instance_of SymEngine::Rational
11
+ expect(a.to_s).to eq('2/3')
12
+ end
13
+ end
14
+ end
15
+
16
+ describe 'coercion tests' do
17
+ before :each do
18
+ @a = SymEngine::Symbol.new('x')
19
+ @b = Rational(3, 5)
20
+ end
21
+
22
+ context 'using a ruby Rational as the second operand' do
23
+ it 'succeeds with commutative operations' do
24
+ c = @a * @b
25
+ expect(c).to be_an_instance_of SymEngine::Basic
26
+ expect(c).to eq(SymEngine::Rational.new(@b) * @a)
27
+ end
28
+
29
+ it 'succeeds with non commutative operations' do
30
+ c = @a / @b
31
+ expect(c).to be_an_instance_of SymEngine::Basic
32
+ expect(c).to eq(@a / SymEngine::Rational.new(@b))
33
+ end
34
+ end
35
+
36
+ context 'using a ruby Rational as the first operand' do
37
+ it 'succeeds with commutative operations' do
38
+ c = @b * @a
39
+ expect(c).to be_an_instance_of SymEngine::Basic
40
+ expect(c).to eq(@a * SymEngine::Rational.new(@b))
41
+ end
42
+
43
+ it 'succeeds with non commutative operations' do
44
+ c = @b / @a
45
+ expect(c).to be_an_instance_of SymEngine::Basic
46
+ expect(c).to eq(SymEngine::Rational.new(@b) / @a)
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,96 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+
15
+ # Loading the classes to be tested
16
+ require_relative '../lib/symengine'
17
+
18
+ # The `.rspec` file also contains a few flags that are not defaults but that
19
+ # users commonly want.
20
+ #
21
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
22
+ RSpec.configure do |config|
23
+ # rspec-expectations config goes here. You can use an alternate
24
+ # assertion/expectation library such as wrong or the stdlib/minitest
25
+ # assertions if you prefer.
26
+ config.expect_with :rspec do |expectations|
27
+ # This option will default to `true` in RSpec 4. It makes the `description`
28
+ # and `failure_message` of custom matchers include text for helper methods
29
+ # defined using `chain`, e.g.:
30
+ # be_bigger_than(2).and_smaller_than(4).description
31
+ # # => "be bigger than 2 and smaller than 4"
32
+ # ...rather than:
33
+ # # => "be bigger than 2"
34
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
35
+ end
36
+
37
+ config.expect_with :test_unit
38
+
39
+ # rspec-mocks config goes here. You can use an alternate test double
40
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
41
+ config.mock_with :rspec do |mocks|
42
+ # Prevents you from mocking or stubbing a method that does not exist on
43
+ # a real object. This is generally recommended, and will default to
44
+ # `true` in RSpec 4.
45
+ mocks.verify_partial_doubles = true
46
+ end
47
+
48
+ # The settings below are suggested to provide a good initial experience
49
+ # with RSpec, but feel free to customize to your heart's content.
50
+ =begin
51
+ # These two settings work together to allow you to limit a spec run
52
+ # to individual examples or groups you care about by tagging them with
53
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
54
+ # get run.
55
+ config.filter_run :focus
56
+ config.run_all_when_everything_filtered = true
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # This setting enables warnings. It's recommended, but in some cases may
66
+ # be too noisy due to issues in dependencies.
67
+ config.warnings = true
68
+
69
+ # Many RSpec users commonly either run the entire suite or an individual
70
+ # file, and it's useful to allow more verbose output when running an
71
+ # individual spec file.
72
+ if config.files_to_run.one?
73
+ # Use the documentation formatter for detailed output,
74
+ # unless a formatter has already been configured
75
+ # (e.g. via a command-line flag).
76
+ config.default_formatter = 'doc'
77
+ end
78
+
79
+ # Print the 10 slowest examples and example groups at the
80
+ # end of the spec run, to help surface which specs are running
81
+ # particularly slow.
82
+ config.profile_examples = 10
83
+
84
+ # Run specs in random order to surface order dependencies. If you find an
85
+ # order dependency and want to debug it, you can fix the order by providing
86
+ # the seed, which is printed after each run.
87
+ # --seed 1234
88
+ config.order = :random
89
+
90
+ # Seed global randomization in this process using the `--seed` CLI option.
91
+ # Setting this allows you to use `--seed` to deterministically reproduce
92
+ # test failures related to randomization by passing the same `--seed` value
93
+ # as the one that triggered the failure.
94
+ Kernel.srand config.seed
95
+ =end
96
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe SymEngine do
4
+ before :each do
5
+ end
6
+
7
+ describe SymEngine::Symbol do
8
+ before :each do
9
+ end
10
+
11
+ describe '.new' do
12
+ context 'with a string as an argument' do
13
+ it 'returns a Symbol object' do
14
+ symbol = SymEngine::Symbol.new('x')
15
+ expect(symbol).to be_an_instance_of SymEngine::Symbol
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,19 @@
1
+ Gem::Specification.new do |gem|
2
+ gem.name = 'symengine'
3
+ gem.version = '0.0.2'
4
+ gem.summary = "Ruby interface for SymEngine, a fast C++ library for symbolic manipulation"
5
+ gem.description = "This gem provides a Ruby interface for SymEngine, a fast C++ library for symbolic manipulation, so that the you can use the features of SymEngine in ruby."
6
+ gem.authors = ['Abinash Meher']
7
+ gem.email = ["abinashdakshana999@gmail.com"]
8
+ gem.homepage = 'https://github.com/sympy/symengine'
9
+ gem.files = Dir["lib/**/*", "bin/*", "LICENSE", "*.md", "ext/**/*", "spec/**/*", "CMakeLists.txt", "Gemfile",
10
+ "cmake/FindRuby.cmake", "symengine.gemspec"]
11
+ gem.require_paths = ["lib"]
12
+ gem.extensions = ["ext/symengine/extconf.rb"]
13
+ gem.license = 'MIT'
14
+
15
+ gem.add_development_dependency 'bundler', '~> 1.7'
16
+ gem.add_development_dependency 'rspec', '~> 3.0'
17
+ gem.add_development_dependency 'test-unit', '~> 3.1'
18
+ gem.add_development_dependency 'rdoc', '~> 4.0'
19
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: symengine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abinash Meher
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-21 00:00:00.000000000 Z
11
+ date: 2015-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,38 +72,42 @@ description: This gem provides a Ruby interface for SymEngine, a fast C++ librar
72
72
  email:
73
73
  - abinashdakshana999@gmail.com
74
74
  executables: []
75
- extensions: []
75
+ extensions:
76
+ - ext/symengine/extconf.rb
76
77
  extra_rdoc_files: []
77
78
  files:
79
+ - CMakeLists.txt
80
+ - Gemfile
78
81
  - LICENSE
79
82
  - README.md
80
83
  - bin/callgrind_test.sh
81
84
  - bin/gdb.sh
82
85
  - bin/valgrind_test.sh
86
+ - cmake/FindRuby.cmake
87
+ - ext/symengine/CMakeLists.txt
88
+ - ext/symengine/extconf.rb
89
+ - ext/symengine/ruby_basic.c
90
+ - ext/symengine/ruby_basic.h
91
+ - ext/symengine/ruby_integer.c
92
+ - ext/symengine/ruby_integer.h
93
+ - ext/symengine/ruby_rational.c
94
+ - ext/symengine/ruby_rational.h
95
+ - ext/symengine/ruby_symbol.c
96
+ - ext/symengine/ruby_symbol.h
97
+ - ext/symengine/symengine.c
98
+ - ext/symengine/symengine.h
99
+ - ext/symengine/symengine_macros.c
100
+ - ext/symengine/symengine_macros.h
83
101
  - lib/symengine.rb
84
- - lib/symengine/CMakeFiles/CMakeDirectoryInformation.cmake
85
- - lib/symengine/CMakeFiles/progress.marks
86
- - lib/symengine/CMakeFiles/symengine_ruby.dir/C.includecache
87
- - lib/symengine/CMakeFiles/symengine_ruby.dir/DependInfo.cmake
88
- - lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.o
89
- - lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.o
90
- - lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.o
91
- - lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.o
92
- - lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.o
93
- - lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.o
94
- - lib/symengine/CMakeFiles/symengine_ruby.dir/build.make
95
- - lib/symengine/CMakeFiles/symengine_ruby.dir/cmake_clean.cmake
96
- - lib/symengine/CMakeFiles/symengine_ruby.dir/depend.internal
97
- - lib/symengine/CMakeFiles/symengine_ruby.dir/depend.make
98
- - lib/symengine/CMakeFiles/symengine_ruby.dir/flags.make
99
- - lib/symengine/CMakeFiles/symengine_ruby.dir/link.txt
100
- - lib/symengine/CMakeFiles/symengine_ruby.dir/progress.make
101
- - lib/symengine/CTestTestfile.cmake
102
- - lib/symengine/Makefile
103
102
  - lib/symengine/basic.rb
104
- - lib/symengine/cmake_install.cmake
105
103
  - lib/symengine/iruby.rb
106
- - lib/symengine/symengine.so
104
+ - spec/arit_spec.rb
105
+ - spec/basic_spec.rb
106
+ - spec/integer_spec.rb
107
+ - spec/rational_spec.rb
108
+ - spec/spec_helper.rb
109
+ - spec/symbol_spec.rb
110
+ - symengine.gemspec
107
111
  homepage: https://github.com/sympy/symengine
108
112
  licenses:
109
113
  - MIT
@@ -124,9 +128,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
128
  version: '0'
125
129
  requirements: []
126
130
  rubyforge_project:
127
- rubygems_version: 2.4.6
131
+ rubygems_version: 2.4.8
128
132
  signing_key:
129
133
  specification_version: 4
130
134
  summary: Ruby interface for SymEngine, a fast C++ library for symbolic manipulation
131
135
  test_files: []
132
- has_rdoc:
@@ -1,16 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 2.8
3
-
4
- # Relative path conversion top directories.
5
- SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/abinashmeher999/gsoc/symengine")
6
- SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/abinashmeher999/gsoc/symengine")
7
-
8
- # Force unix paths in dependencies.
9
- SET(CMAKE_FORCE_UNIX_PATHS 1)
10
-
11
-
12
- # The C and CXX include file regular expressions for this directory.
13
- SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
14
- SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
15
- SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
16
- SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
@@ -1,138 +0,0 @@
1
- #IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">])
2
-
3
- #IncludeRegexScan: ^.*$
4
-
5
- #IncludeRegexComplain: ^$
6
-
7
- #IncludeRegexTransform:
8
-
9
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby.h
10
- ruby/ruby.h
11
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby.h
12
-
13
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/defines.h
14
- ruby/config.h
15
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/config.h
16
- stdio.h
17
- -
18
- sys/types.h
19
- -
20
- sys/stat.h
21
- -
22
- stdlib.h
23
- -
24
- stddef.h
25
- -
26
- stdlib.h
27
- -
28
- memory.h
29
- -
30
- string.h
31
- -
32
- strings.h
33
- -
34
- inttypes.h
35
- -
36
- stdint.h
37
- -
38
- unistd.h
39
- -
40
- sys/select.h
41
- -
42
- setjmpex.h
43
- -
44
- ruby/missing.h
45
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/missing.h
46
- ruby/win32.h
47
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/win32.h
48
- net/socket.h
49
- -
50
-
51
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/intern.h
52
- ruby/defines.h
53
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/defines.h
54
- stdarg.h
55
- -
56
- varargs.h
57
- -
58
- ruby/st.h
59
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/st.h
60
-
61
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/missing.h
62
- ruby/config.h
63
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/config.h
64
- stddef.h
65
- -
66
- math.h
67
- -
68
- time.h
69
- -
70
- sys/time.h
71
- -
72
- ieeefp.h
73
- -
74
- sys/types.h
75
- -
76
- sys/socket.h
77
- -
78
-
79
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby.h
80
- ruby/config.h
81
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/config.h
82
- defines.h
83
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/defines.h
84
- intrinsics.h
85
- -
86
- stdarg.h
87
- -
88
- alloca.h
89
- -
90
- limits.h
91
- -
92
- limits.h
93
- -
94
- ruby/intern.h
95
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/intern.h
96
- ruby/subst.h
97
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/subst.h
98
-
99
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/st.h
100
- ruby/defines.h
101
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/ruby/defines.h
102
- limits.h
103
- -
104
-
105
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/subst.h
106
-
107
- /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/x86_64-linux/ruby/config.h
108
-
109
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/ruby_basic.c
110
- ruby_basic.h
111
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/ruby_basic.h
112
-
113
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/ruby_basic.h
114
- ruby.h
115
- -
116
- symengine/cwrapper.h
117
- -
118
- symengine_macros.h
119
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/symengine_macros.h
120
-
121
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/symengine_macros.h
122
- ruby.h
123
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/ruby.h
124
- symengine/cwrapper.h
125
- /home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine/symengine/cwrapper.h
126
-
127
- symengine/cwrapper.h
128
- stdio.h
129
- -
130
- stdlib.h
131
- -
132
- gmp.h
133
- -
134
- symengine/type_codes.inc
135
- symengine/symengine/type_codes.inc
136
-
137
- symengine/type_codes.inc
138
-