Mpq.pm
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. # GMP mpq module.
  2. # Copyright 2001 Free Software Foundation, Inc.
  3. #
  4. # This file is part of the GNU MP Library.
  5. #
  6. # The GNU MP Library is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU Lesser General Public License as published
  8. # by the Free Software Foundation; either version 3 of the License, or (at
  9. # your option) any later version.
  10. #
  11. # The GNU MP Library is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. # License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License
  17. # along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. package GMP::Mpq;
  19. require GMP;
  20. require Exporter;
  21. @ISA = qw(GMP Exporter);
  22. @EXPORT = qw();
  23. @EXPORT_OK = qw();
  24. %EXPORT_TAGS = ('all' => [qw(canonicalize den inv mpq num)],
  25. 'constants'   => [@EXPORT],
  26. 'noconstants' => [@EXPORT] );
  27. Exporter::export_ok_tags('all');
  28. use overload
  29.     '+'   => &overload_add,     '+='  => &overload_addeq,
  30.     '-'   => &overload_sub,     '-='  => &overload_subeq,
  31.     '*'   => &overload_mul,     '*='  => &overload_muleq,
  32.     '/'   => &overload_div,     '/='  => &overload_diveq,
  33.     '**'  => &overload_pow,     '**=' => &overload_poweq,
  34.     '<<'  => &overload_lshift,  '<<=' => &overload_lshifteq,
  35.     '>>'  => &overload_rshift,  '>>=' => &overload_rshifteq,
  36.     'bool' => &overload_bool,
  37.     'not'  => &overload_not,
  38.     '!'    => &overload_not,
  39.     '=='   => &overload_eq,
  40.     '!='   => &overload_ne,
  41.     '<=>'  => &overload_spaceship,
  42.     '++'   => &overload_inc,
  43.     '--'   => &overload_dec,
  44.     'abs'  => &overload_abs,
  45.     'neg'  => &overload_neg,
  46.     '='    => &overload_copy,
  47.     '""'   => &overload_string;
  48. my $constants = { };
  49. sub import {
  50.   foreach (@_) {
  51.     if ($_ eq ':constants') {
  52.       overload::constant ('integer' => &overload_constant,
  53.   'binary'  => &overload_constant,
  54.   'float'   => &overload_constant);
  55.     } elsif ($_ eq ':noconstants') {
  56.       overload::remove_constant ('integer' => &overload_constant,
  57.  'binary'  => &overload_constant,
  58.  'float'   => &overload_constant);
  59.     }
  60.   }
  61.   goto &Exporter::import;
  62. }
  63. 1;
  64. __END__
  65. # Local variables:
  66. # perl-indent-level: 2
  67. # End: