Fix warnings.
This commit is contained in:
parent
7af509ee8d
commit
d7cb138e22
|
@ -1,6 +1,6 @@
|
||||||
extern crate nalgebra as na;
|
extern crate nalgebra as na;
|
||||||
|
|
||||||
use na::{DMatrix, Matrix2x3, Matrix3x2, RowVector3, Vector2};
|
use na::{DMatrix, Matrix2x3, RowVector3, Vector2};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
// All the following matrices are equal but constructed in different ways.
|
// All the following matrices are equal but constructed in different ways.
|
||||||
|
|
|
@ -129,7 +129,7 @@ mod tests {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn exp_complex() {
|
fn exp_complex() {
|
||||||
use nalgebra::{Complex, ComplexField, DMatrix, DVector, Matrix2, RealField};
|
use nalgebra::{Complex, DMatrix, DVector, Matrix2, RealField};
|
||||||
|
|
||||||
{
|
{
|
||||||
let z = Matrix2::<Complex<f64>>::zeros();
|
let z = Matrix2::<Complex<f64>>::zeros();
|
||||||
|
|
Loading…
Reference in New Issue