Skip to content

Commit

Permalink
Remove moved files.
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddoria committed Jan 29, 2012
2 parents 2025eeb + e63d442 commit 1dd913a
Show file tree
Hide file tree
Showing 5,464 changed files with 44 additions and 498,357 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
7 changes: 6 additions & 1 deletion CMake/SetTargetProperties/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ cmake_minimum_required(VERSION 2.6)
PROJECT(SetTargetProperties)

ADD_EXECUTABLE(SetTargetProperties SetTargetProperties.cxx)
set_target_properties(SetTargetProperties PROPERTIES COMPILE_FLAGS "-DUNIX")

#set_target_properties(SetTargetProperties PROPERTIES COMPILE_FLAGS "INTERACTIVE") # this does NOT work!

# The following two lines seem to do the same thing
#set_target_properties(SetTargetProperties PROPERTIES COMPILE_FLAGS "-DINTERACTIVE")
#set_target_properties(SetTargetProperties PROPERTIES COMPILE_DEFINITIONS "INTERACTIVE")
11 changes: 10 additions & 1 deletion CMake/SetTargetProperties/SetTargetProperties.cxx
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
#include <iostream>

int main()
{
return 0;
#ifdef INTERACTIVE
std::cout << "ifdef interactive" << std::endl;
#endif

#if defined(INTERACTIVE)
std::cout << "if defined(interactive)" << std::endl;
#endif
return 0;
}
3 changes: 3 additions & 0 deletions Latex/Subfigure/Subfigure.tex
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
% THIS IS DEPRECATED! USE SUBFIG INSTEAD!


\documentclass[10pt]{article}
\usepackage{subfigure}
\usepackage{graphicx}
Expand Down
14 changes: 14 additions & 0 deletions Plastimatch/bspline.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# command_file.txt
[GLOBAL]
fixed=fixed.png
moving=moving.png
img_out=warped.png
xform_out=bspline_coefficients.txt

[STAGE]
xform=bspline
impl=plastimatch
threading=openmp
max_its=30
grid_spac=100 100 100
res=4 4 2
Binary file added Plastimatch/fixed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Plastimatch/moving.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions Plastimatch/translation.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# command_file.txt
[GLOBAL]
fixed=fixed.png
moving=moving.png
img_out=warped.png

[STAGE]
xform=translation
optim=rsg
max_its=30
res=4 4 2
Binary file added Plastimatch/warped.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 0 additions & 86 deletions c++/src/2DArray/2DArray.cpp

This file was deleted.

11 changes: 0 additions & 11 deletions c++/src/2DArray/CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 1dd913a

Please sign in to comment.