Skip to content

Instantly share code, notes, and snippets.

#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
extern double drand48();
int Z;
int M;
int sizeLattice;
int N;
@Heliosmaster
Heliosmaster / simple_sieve.go
Created September 8, 2012 17:27
Simple Erathostenes' Sieve in Go
package main
import (
"fmt"
"os"
"math"
"strconv"
)
func main(){
// figures out which number is the bound
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
fib0 := 1
fib1 := 1
return func() int {
@Heliosmaster
Heliosmaster / recode_to_utf8.rb
Created April 28, 2012 10:26
Recode to UTF-8
#out = `find . -name "*.htm*" | xargs file -i`
out = (ARGV.size > 0 ? `file -i #{ARGV[0]}/*.htm*` : `file -i *.htm*`)
out.split("\n").each do |l|
l =~ /(.*):(.*)charset=(.*)/
filename = "#{$1}"
charset = "#{$3}"
charset = "windows-1252" if charset == "unknown-8bit"
if (charset!= "binary" && charset != "us-ascii" && charset != "utf-8")
succ = system("iconv -f #{charset} -t utf-8 #{filename} -o #{filename}.tmp")
if !succ
# `sed -i 's/<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>/
#<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>\n
# <meta http-equiv="Content-Type" content="text\/html; charset=UTF-8"\/>/g' #{filename}`
#out = `find . -name "*.htm*" | xargs file -i`
if ARGV.size > 0
out = `file -i #{ARGV[0]}/*.htm*`
else
out = `file -i *.htm*`
function a = lsa(fun,x,d,a1,varargin)
% a = lsa(fun,x,d,a1)
%
% Implementation of Line Search Algorithm with Strong Wolfe conditions
% as found J. Nocedal, S. Wright, Numerical Optimization, 1999 edition
% Algorithm 3.2 on page 59
%
% Output arguments:
% a : final stepsize
%