linmeric 0.1.0
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.
- checksums.yaml +7 -0
- data/bin/linmeric +547 -0
- data/doc/Instructions_en.html +231 -0
- data/doc/Instructions_en.txt +208 -0
- data/doc/Instructions_it.html +231 -0
- data/doc/Instructions_it.txt +214 -0
- data/doc/README_en.html +177 -0
- data/doc/README_en.txt +30 -0
- data/doc/README_it.html +187 -0
- data/doc/README_it.txt +32 -0
- data/lib/linmeric/Archive.rb +50 -0
- data/lib/linmeric/CnGal_Matrix_class.rb +358 -0
- data/lib/linmeric/CnGal_new_classes.rb +231 -0
- data/lib/linmeric/CnGal_tools.rb +80 -0
- data/lib/linmeric/Error_print.rb +66 -0
- data/lib/linmeric/Function_class.rb +249 -0
- data/lib/linmeric/Integrators.rb +76 -0
- data/lib/linmeric/LU.rb +84 -0
- data/lib/linmeric/Lexer.rb +54 -0
- data/lib/linmeric/Listener.rb +191 -0
- data/lib/linmeric/Parser.rb +118 -0
- data/lib/linmeric/Scopify.rb +206 -0
- data/lib/linmeric/Sizer.rb +328 -0
- data/lib/linmeric/Token.rb +53 -0
- data/lib/linmeric.rb +10 -0
- metadata +76 -0
data/lib/linmeric.rb
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#! /usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "linmeric/CnGal_new_classes.rb"
|
|
4
|
+
require "linmeric/CnGal_tools.rb"
|
|
5
|
+
require "linmeric/CnGal_Matrix_class.rb"
|
|
6
|
+
require "linmeric/Parser.rb"
|
|
7
|
+
require "linmeric/Scopify.rb"
|
|
8
|
+
require "linmeric/Listener.rb"
|
|
9
|
+
require "linmeric/Sizer.rb"
|
|
10
|
+
require "linmeric/LU.rb"
|
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: linmeric
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Massimiliano Dal Mas
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2017-07-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Simple calculator to make operations on matrices and functions
|
|
14
|
+
email: max.codeware@gmail.com
|
|
15
|
+
executables:
|
|
16
|
+
- linmeric
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files:
|
|
19
|
+
- doc/Instructions_it.txt
|
|
20
|
+
- doc/Instructions_en.txt
|
|
21
|
+
- doc/Instructions_it.html
|
|
22
|
+
- doc/Instructions_en.html
|
|
23
|
+
- doc/README_en.txt
|
|
24
|
+
- doc/README_it.txt
|
|
25
|
+
- doc/README_en.html
|
|
26
|
+
- doc/README_it.html
|
|
27
|
+
files:
|
|
28
|
+
- bin/linmeric
|
|
29
|
+
- doc/Instructions_en.html
|
|
30
|
+
- doc/Instructions_en.txt
|
|
31
|
+
- doc/Instructions_it.html
|
|
32
|
+
- doc/Instructions_it.txt
|
|
33
|
+
- doc/README_en.html
|
|
34
|
+
- doc/README_en.txt
|
|
35
|
+
- doc/README_it.html
|
|
36
|
+
- doc/README_it.txt
|
|
37
|
+
- lib/linmeric.rb
|
|
38
|
+
- lib/linmeric/Archive.rb
|
|
39
|
+
- lib/linmeric/CnGal_Matrix_class.rb
|
|
40
|
+
- lib/linmeric/CnGal_new_classes.rb
|
|
41
|
+
- lib/linmeric/CnGal_tools.rb
|
|
42
|
+
- lib/linmeric/Error_print.rb
|
|
43
|
+
- lib/linmeric/Function_class.rb
|
|
44
|
+
- lib/linmeric/Integrators.rb
|
|
45
|
+
- lib/linmeric/LU.rb
|
|
46
|
+
- lib/linmeric/Lexer.rb
|
|
47
|
+
- lib/linmeric/Listener.rb
|
|
48
|
+
- lib/linmeric/Parser.rb
|
|
49
|
+
- lib/linmeric/Scopify.rb
|
|
50
|
+
- lib/linmeric/Sizer.rb
|
|
51
|
+
- lib/linmeric/Token.rb
|
|
52
|
+
homepage: http://rubygems.org/gems/linmeric
|
|
53
|
+
licenses:
|
|
54
|
+
- MIT
|
|
55
|
+
metadata: {}
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
require_paths:
|
|
59
|
+
- lib
|
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: 1.9.3
|
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
requirements: []
|
|
71
|
+
rubyforge_project:
|
|
72
|
+
rubygems_version: 2.4.5.2
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 4
|
|
75
|
+
summary: Numeric calculator
|
|
76
|
+
test_files: []
|