15 lines
214 B
C++
15 lines
214 B
C++
#pragma once
|
|
|
|
#include "GEFullMat.h"
|
|
|
|
namespace MbD {
|
|
class GEFullMatFullPv : public GEFullMat
|
|
{
|
|
//
|
|
public:
|
|
void doPivoting(int p) override;
|
|
void postSolve() override;
|
|
};
|
|
}
|
|
|