This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Use at your own risk! | |
;;(setq column-number-mode t) | |
(add-hook 'before-save-hook 'delete-trailing-whitespace) | |
;; go mode, not installed yet | |
;;(setq load-path (cons "/home/aykut/opt/go/misc/emacs" load-path)) | |
;;(require 'go-mode-load) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC=g++ | |
PROGNAME=c_solver | |
INCLUDES= | |
CFLAGS=-g -Wall | |
LDFLAGS= | |
LIBS= | |
OBJECTS=solverA.o\ | |
solverB.o\ | |
solverC.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Exit when command fails | |
set -e | |
#Set defaults | |
root_dir=$PWD | |
declare -i num_actions | |
num_actions=0 | |
sparse=false |