rust-blas 0.2.0

BLAS bindings and wrappers, fork of rblas
Documentation
// Copyright 2014 Michael Yang. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

//! Various attributes of vectors and matrices.

#[repr(C)]
#[derive(Copy, Clone)]
pub enum Order {
    RowMajor = 101,
    ColMajor = 102,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub enum Transpose {
    NoTrans = 111,
    Trans = 112,
    ConjTrans = 113,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub enum Symmetry {
    Upper = 121,
    Lower = 122,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub enum Diagonal {
    NonUnit = 131,
    Unit = 132,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub enum Side {
    Left = 141,
    Right = 142,
}