Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Collections.Generic;
- namespace ConsoleApplication1
- {
- public class Hyperbole : Func
- {
- public Hyperbole(double delim, double cons)
- {
- Polynome = new Dictionary<double, double>();
- Polynome.Add(-1, delim);
- Polynome.Add(0, cons);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement