Implements Laurent polynomials in two variables over arbitrary rings.
More...
#include "utilities/stringutils.h"
#include "utilities/tightencoding.h"
#include "core/output.h"
#include <iostream>
#include <map>
|
namespace | regina |
| Contains the entire Regina calculation engine.
|
|
|
template<typename T > |
void | regina::swap (Laurent2< T > &a, Laurent2< T > &b) noexcept |
| Swaps the contents of the given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator* (Laurent2< T > poly, const typename Laurent2< T >::Coefficient &scalar) |
| Multiplies the given polynomial by the given scalar constant.
|
|
template<typename T > |
Laurent2< T > | regina::operator* (const typename Laurent2< T >::Coefficient &scalar, Laurent2< T > poly) |
| Multiplies the given polynomial by the given scalar constant.
|
|
template<typename T > |
Laurent2< T > | regina::operator/ (Laurent2< T > poly, const typename Laurent2< T >::Coefficient &scalar) |
| Divides the given polynomial by the given scalar constant.
|
|
template<typename T > |
Laurent2< T > | regina::operator+ (const Laurent2< T > &lhs, const Laurent2< T > &rhs) |
| Adds the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator+ (Laurent2< T > &&lhs, const Laurent2< T > &rhs) |
| Adds the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator+ (const Laurent2< T > &lhs, Laurent2< T > &&rhs) |
| Adds the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator+ (Laurent2< T > &&lhs, Laurent2< T > &&rhs) |
| Adds the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator- (Laurent2< T > arg) |
| Returns the negative of the given polynomial.
|
|
template<typename T > |
Laurent2< T > | regina::operator- (const Laurent2< T > &lhs, const Laurent2< T > &rhs) |
| Subtracts the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator- (Laurent2< T > &&lhs, const Laurent2< T > &rhs) |
| Subtracts the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator- (const Laurent2< T > &lhs, Laurent2< T > &&rhs) |
| Subtracts the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator- (Laurent2< T > &&lhs, Laurent2< T > &&rhs) |
| Subtracts the two given polynomials.
|
|
template<typename T > |
Laurent2< T > | regina::operator* (const Laurent2< T > &lhs, const Laurent2< T > &rhs) |
| Multiplies the two given polynomials.
|
|
Implements Laurent polynomials in two variables over arbitrary rings.
Copyright © 1999-2025, The Regina development team
This software is released under the GNU General Public License,
with some additional permissions; see the source code for details.
For further information, or to submit a bug or other problem, please contact
Ben Burton (
bab@maths.uq.edu.au).