40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// qra12_63_64_irr_b.h
 | 
						|
// Code tables and defines for Q-ary RA code (12,63) over GF(64)
 | 
						|
// Code Name: qra12_63_64_irr_b
 | 
						|
// (12,63) RA Code over GF(64) - RF=333344455567
 | 
						|
 | 
						|
// (c) 2016 - Nico Palermo - IV3NWV - Microtelecom Srl, Italy
 | 
						|
 | 
						|
// This file is part of the qracodes project, a Forward Error Control
 | 
						|
// encoding/decoding package based on Q-ary RA (Repeat and Accumulate) LDPC codes.
 | 
						|
//
 | 
						|
//    qracodes is free software: you can redistribute it and/or modify
 | 
						|
//    it under the terms of the GNU General Public License as published by
 | 
						|
//    the Free Software Foundation, either version 3 of the License, or
 | 
						|
//    (at your option) any later version.
 | 
						|
//    qracodes is distributed in the hope that it will be useful,
 | 
						|
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
//    GNU General Public License for more details.
 | 
						|
//
 | 
						|
//    You should have received a copy of the GNU General Public License
 | 
						|
//    along with qracodes source distribution.
 | 
						|
//    If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
#ifndef _qra12_63_64_irr_b_h
 | 
						|
#define _qra12_63_64_irr_b_h
 | 
						|
 | 
						|
#include "qracodes.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
extern const qracode qra_12_63_64_irr_b;
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif // _qra12_63_64_irr_b_h
 |