10 lines
124 B
C++
10 lines
124 B
C++
namespace quickhull {
|
|
namespace tests {
|
|
int run();
|
|
}
|
|
}
|
|
|
|
int main(int, char** argv) {
|
|
return quickhull::tests::run();
|
|
}
|