Skip to content

Instantly share code, notes, and snippets.

@pieterjongsma
Created July 27, 2012 11:47
Show Gist options
  • Save pieterjongsma/3187557 to your computer and use it in GitHub Desktop.
Save pieterjongsma/3187557 to your computer and use it in GitHub Desktop.
Parabolic Fit Test main
#import <Foundation/Foundation.h>
#import "ParabolicFitTest.h"
int main(int argc, const char * argv[])
{
@autoreleasepool {
ParabolicFitTest *testCase = [[ParabolicFitTest alloc] init];
testCase.repetitions = 100000;
[testCase runBatch];
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment