12th stage test

This commit is contained in:
kuntz 2021-02-01 11:50:49 -06:00
parent 2fcc9cd0ea
commit b9cfe31abe
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@
// Copyright © 2021 by Brett Kuntz. All rights reserved. // Copyright © 2021 by Brett Kuntz. All rights reserved.
//---------------------------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------------------------
#include "compress.h" #include "compress.h"
#define CUTS_LENGTH 10 #define CUTS_LENGTH 11
static ui CHAIN_CUTS[CUTS_LENGTH] = { 37, 23, 17, 14, 11, 9, 8, 7, 6, -1 }; static ui CHAIN_CUTS[CUTS_LENGTH] = { 37, 23, 17, 14, 11, 9, 8, 7, 6, 6, -1 };
//---------------------------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------------------------
//#include <windows.h> //#include <windows.h>
si main(si argc, s8 ** argv) si main(si argc, s8 ** argv)

View File

@ -29,7 +29,8 @@ typedef float r32 ; typedef double r64 ;
// 8th cut is 8 (p0.03125000) // 8th cut is 8 (p0.03125000)
// 9th cut is 7 (p0.02734375) // 9th cut is 7 (p0.02734375)
// 10th cut is 6 (p0.02343750) // 10th cut is 6 (p0.02343750)
// 11th cut is ?? // 11th cut is 6 (p0.02343750)
// 12th cut is ??
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>