Skip to content
Snippets Groups Projects
Limit.h 143 B
// Limit.h

#ifndef LIMIT_H
#define LIMIT_H

namespace math1d_cl {
	struct Limit 
	{
		double lower;
		double upper;
	};
}
#endif