Files
solver/OndselSolver/VelICSolver.h
Chris Mayo 07785b7576 include cstdint for SIZE_MAX (#86)
GCC 15 is removing cstdint from the C++ Standard Library.
2024-11-27 15:07:28 -07:00

29 lines
882 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include <cstdint>
#include "VelSolver.h"
namespace MbD {
class VelICSolver : public VelSolver
{
//IC with fully or under constrained system
//nqsu
public:
void assignEquationNumbers() override;
void run() override;
void runBasic();
size_t nqsu = SIZE_MAX;
};
}