13th stage test

This commit is contained in:
kuntz 2021-02-01 21:22:36 -06:00
parent b9cfe31abe
commit 5789e60105
3 changed files with 4 additions and 3 deletions

BIN
comp7.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

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

View File

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