Skip to content

Instantly share code, notes, and snippets.

View gonch's full-sized avatar

Gonzalo Alsina gonch

  • TuneIn
  • San Francisco, CA
View GitHub Profile
@gonch
gonch / 3SAT.c
Last active December 31, 2015 09:39
Simple 3-SAT Solver
#include <stdio.h>
#include <assert.h>
FILE *ent;
int i,j,c,numclauses,n;
int satisfactible;
int r;
int clauses[1065][3];