This file contains hidden or 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
int f(int count, int data) { | |
count += calc_adjustment(data); | |
UMBRA_FREEZE(count) { g(count) } | |
} | |
// ==> | |
int f(int count, int data) { | |
count += calc_adjustment(data); | |
if(auto const& umbra_gensym1tmp = count; true) | |
UMBRA_IGNORE_SHADOW( // |
This file contains hidden or 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
#include "hedley.h" | |
// https://www.fluentcpp.com/2019/08/30/how-to-disable-a-warning-in-cpp/ | |
#include <initializer_list> | |
//#pragma GCC diagnostic error "-Wshadow" | |
#define PRAGMA_IGNORE_SHADOW_GCC \ | |
_Pragma("GCC diagnostic ignored \"-Wshadow\"") | |
#define MSVC_DISABLE_WARNING(num) __pragma(warning(disable : num)) |
This file contains hidden or 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
#!/usr/bin/env python | |
def is_even(x): | |
return x & 1 | |
def gcd(x,y): | |
factors_of_2 = 0 | |
while true: | |
if x==0: | |
return y << factors_of_2 |
This file contains hidden or 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
(ns logic-data-transform.core | |
(:use [clojure.core.logic]) | |
(:require [clojure.test :as test]) | |
(:require [clojure.core.match :refer [match]])) | |
(defn assoco | |
([base & args] | |
(let [out (last args) | |
bindings (partition 2 (butlast args))] | |
(apply conjo base (conj (vec bindings) out))))) |
This file contains hidden or 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
template<class T, class Less = std::less<>> | |
constexpr auto minmax(T&& x, T&& y, Less less = {}) | |
BODX(less(y, x) ? std::forward_as_tuple(y, x) : std::forward_as_tuple(x, y)) | |
// s is for stable | |
template<class T, class Less = std::less<>> | |
constexpr auto smin(T&& x, T&& y, Less less = {}) | |
BODX(std::get<0>(minmax(x, y, less))) | |
template<class T, class Less = std::less<>> |
This file contains hidden or 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
namespace FN_impl { | |
template<class T> | |
constexpr auto delay(auto x) { | |
return x; | |
} | |
struct no_arg_passed { | |
template<class T> | |
operator T() { |
This file contains hidden or 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
(defgeneric add (x y)) | |
;;; assume we already defined vector and integer classes | |
(defmethod add ((x vector) (y vector)) | |
....) | |
(defmethod add ((x integer) (y integer)) | |
(+ x y)) |
This file contains hidden or 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
#include <utility> | |
#define FORALL_CONSTREFS(mac) \ | |
mac(const, &, ) mac(, &, ) mac(, &&, std::move) mac(const, &&, std::move) | |
class ExampleIntWrapper { | |
public: | |
# define OVERLOADS_PLEASE(const_, ref_, move_) \ | |
int const_ ref_ data() const_ ref_ { return move_(data_); } | |
FORALL_CONSTREFS(OVERLOADS_PLEASE) |
This file contains hidden or 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
import re | |
from hash_map import HashMap | |
""" | |
This is the regular expression used to capture words. It could probably be endlessly | |
tweaked to catch more words, but this provides a standard we can test against, so don't | |
modify it for your assignment submission. | |
""" | |
rgx = re.compile("(\w[\w']*\w|\w)") |
This file contains hidden or 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
function K = fixedPoint(M) | |
[r c] = size(M); | |
assert(r==c); | |
I = eye(r); | |
K = -rref(I-M)(:,r); | |
K(r)=1; | |
assert(norm(M*K-K)<.0001*norm(K)); | |
end | |
function p = projectFromPRn(X) |
NewerOlder