Skip to content

Instantly share code, notes, and snippets.

// 48. Целочисленное линейное программирование. Заданы целочисленная матрица A,
// целочисленные векторы a,b. Нужно найти вектор x из нулей и единиц такой,
// что Ax<b и велична ax максимальна.
#include <assert.h>
#include <math.h>
#include <mpi.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
@Zeex
Zeex / jit.c
Created February 13, 2012 16:33
#include <assert.h>
#include <stddef.h> /* for size_t */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined LINUX
#include <sys/mman.h>
#else
#include <Windows.h>
@Zeex
Zeex / compile-fs
Created January 28, 2012 17:01
shell scripts for easy compiling
#!/bin/sh
me=`basename $0`
if [ $# -ne 1 ]; then
echo "Usage: $me <filterscript>"
echo "Example: $me fsdebug"
exit
fi
@Zeex
Zeex / .vimrc
Last active September 29, 2015 18:37
.vimrc
syntax on
filetype plugin on
filetype indent on
set nocompatible
set nobackup
set autochdir
set cursorline
set number
set ignorecase