Sha256: bdba50e0b1e49f146661e02d038a3c7fbf48f9b23f262e9f3a34952017f55cef
Contents?: true
Size: 1.68 KB
Versions: 2
Compression:
Stored size: 1.68 KB
Contents
# CongruenceSolver CongruenceSolver is a gem for solving polynomial congruences. Should you ever need to solve polynomial congruences and have Ruby installed, this is the gem for you! ## Installation Add this line to your application's Gemfile: ```ruby gem 'congruence_solver' ``` And then execute: $ bundle Or install it yourself as: $ gem install congruence_solver ## Usage To solve a polynomial congruence at the command line, simply invoke `csolve` and then enter the congruence at the prompt. ``` csolve Congruence to solve: x^2 + 2x + 1 = x^3 + 3x^5 mod 49 (0) 1 (1) 8 (2) 15 (3) 22 (4) 26 (5) 29 (6) 36 (7) 43 ``` To use the CongruenceSolver in a Ruby program, use CongruenceSolve::solve_congruence(coeffs, mod), where coeffs is the ascending list of coefficients of the polynomial (congruent to 0) and mod is the modulus of the congruence. ``` #solve -3x^5 - x^3 + x^2 + 2x + 1 = 0 mod 49 coeffs = [1, 2, 1, 1, 0, 3] mod = 49 CongruenceSolver.solve_congruence(coeffs, mod).sort #=> [1, 8, 15, 22, 26, 29, 36, 43] ``` ## Development After checking out the repo, run `bundle install` to install dependencies. Then, run `rake spec` to run the tests, or rake bench to run the benchmark. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/laneb/congruence_solver.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
congruence_solver-0.3.0 | README.md |
congruence_solver-0.2.0 | README.md |