e E c ex e subtour elimination constraints

Size: px
Start display at page:

Download "e E c ex e subtour elimination constraints"

Transcription

1 1 A Symmetric TSP For the symmetric traveling salesman problem we assume c ij = c ji. In graph theoretic terminology we now deal with an undirected graph G = (V, E) with V a set of nodes and E a set of edges. The problem stated in these terms becomes: stsp minimize subject to e E c ex e x(δ(v)) = 2 v V x(e) {0, 1} subtour elimination constraints where δ(v) is the set of edges incident to v. In GAMS we can solve the relaxation by ignoring the subtour elimination constraints as follows: set lt(i,j) lower triangular; lt(i,j)$(ord(i)>ord(j)) = yes; free variable z; binary variable x(i,j equations twomatch(i), obj; obj.. z =e= sum(lt(i,j), d(i,j)x(i,j) twomatch(i).. sum(lt(j,i), x(j,i)) + sum(lt(i,j),x(i,j)) =e= 2; model match /obj,twomatch/; solve match minimizing z using mip; display x.l; To find subtours we can use the following algorithm: 1

2 t := 1 tour(i) := i S := { (i, j) x ij = 1 } while S do choose (i, j) such that (i, j) S T := {(i, j)} S := S {(i, j)} K := { k ({i, j} T ) ({i, k} S {k, j} S) } R := k K δ(k) while R do T := T + R S := S R K := { k ({i, j} T ) ({i, k} S {k, j} S) } R := k K δ(k) od tour(t) := T t := t + 1 od In GAMS this could be implemented as: find and display tours set s(i,j) current solution; set tour(t,i,j) subtours; set tt(t) current subtour; set first(i,j) first (i,j) in S ; set reach(i,j) "(i,j) s connected to tour(tt)"; scalar done /0/; scalar continue; alias(i,k tt(t)$(ord(t)=1) = 1; s(i,j)=yes$(x.l(i,j) > 0.5 // initialize tt(1) = yes // initialize to current solution while(not done, pick any (i,j) from remaining solutions first(i,j)=no; loop((i,j)$(card(first)=0), first(i,j) = s(i,j this is he beginning of a new subtour 2

3 tour(tt,first) = yes; s(first) = no; continue = 1; while(continue, find (i,j) s connected to tour(tt) note that the loop over tt is just syntax: tt contains one element loop((tt,k), reach(i,j)$(tour(tt,k,j) and s(i,j)) = yes; reach(i,j)$(tour(tt,i,k) and s(i,j)) = yes; reach(i,j)$(tour(tt,k,i) and s(i,j)) = yes; reach(i,j)$(tour(tt,j,k) and s(i,j)) = yes; if (card(reach)=0, continue = 0 add them to the current subtour note that the loop over tt is just syntax: tt contains one element loop(tt, tour(tt,reach) = yes; s(reach) = no; reach(i,j) = no; if no remaining solutions, we are done if (card(s)=0, done=1 new subtour tt(t) = tt(t-1 display tour; Consider the data set from [1] which is electronically available from TSPLIB (see [4]). It consists of 42 cities in the U.S. The model solves in about 10 cycles (it depends a bit on which solver is used and what options as there are multiple solutions the solver can choose from during the process). In each cycle a handful of subtours are detected and thus increase the size of the model: in each cycle they cuts are added as constraints. We have reproduced some pictures of intermediate results: the relaxed solution with 8 subtours, the solution after cycle 1 which has 3 subtours, and finally the optimal solution. The pictures were produced using XY-pic (see [2],[5], [6]). The instructions were generated using a GAMS restart file plot42.gms which 3

4 obj equations cuts added relaxed cycle cycle cycle cycle cycle cycle cycle cycle cycle cycle Table 1: atsp42.gms results produces the L A TEX file plot42.tex. Figure 1: Relaxed solution Model stsp42.gms $eolcom // // // This model solves a Symmetric TSP using a simple algorithm // that adds cuts to exclude subtours found in the previous // solution. The data set is dantzig42 from TSPLIB. // // Reference: Dantzig, Fulkerson, Johnson, "Solution of a Large-Scale // Traveling-Salesman Problem", Operations Research, // 2, 1954, pp // 4

5 Figure 2: Cycle 1 solution // optimal solution: 699 // option optcr=0; option iterlim=100000; option reslim=10000; option limrow=0; option limcol=0; option solprint=off; set i cities / c1 Manchester, N.H. c2 Montpelier, Vt. c3 Detroit, Mich. c4 Cleveland, Ohio c5 Charleston, W.Va. c6 Louisville, Ky. c7 Indianapolis, Ind. c8 Chicago, Ill. c9 Milwaukee, Wis. c10 Minneapolis, Minn. c11 Pierre, S.D. c12 Bismarck, N.D. c13 Helena, Mont. c14 Seattle, Wash. c15 Portland, Ore. c16 Boise, Idaho c17 Salt Lake City, Utah c18 Carson City, Nevada c19 Los Angeles, Calif. c20 Phoenix, Ariz. c21 Santa Fe, N.M. c22 Denver, Colo. c23 Cheyenne, Wyo. c24 Omaha, Neb. 5

6 Figure 3: Optimal solution /; c25 Des Moines, Iowa c26 Kansas City, Mo. c27 Topeka, Kans. c28 Oklahoma City, Okla. c29 Dallas, Tex. c30 Little Rock, Ark. c31 Memphis, Tenn. c32 Jackson, Miss. c33 New Orleans, La. c34 Birmingham, Ala. c35 Atlanta, Ga. c36 Jacksonville, Fla. c37 Columbia, S.C. c38 Raleigh, N.C. c39 Richmond, Va. c40 Washington, D.C. c41 Boston, Mass. c42 Portland, Me. alias (i,j,k table d(i,j) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c2 8 c c c c c c c c

7 c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c23 5 c c c c c c c c c c c c c c c c c c c ; 7

8 set lt(i,j) lower triangular; lt(i,j)$(ord(i)>ord(j)) = yes; free variable z; binary variable x(i,j equations twomatch(i), obj; obj.. z =e= sum(lt(i,j), d(i,j)x(i,j) twomatch(k).. sum(lt(i,k), x(i,k)) + sum(lt(k,j),x(k,j)) =e= 2; model match /obj,twomatch/; solve match minimizing z using mip; display x.l; dynamic number of cuts set cycle /cycle1cycle50/; set t tours /t1t100/; set cutindex(cycle,t) equation cut(cycle,t) parameter cutcoeff(cycle,t,i,j) parameter cutlength(cycle,t) dynamic set for addressing cuts; actual cuts; coefficients in cuts; rhs for cuts; cut(cutindex).. sum((i,j), cutcoeff(cutindex,i,j)x(i,j)) =l= cutlength(cutindex)-1; model tsp /obj, twomatch, cut/; used to find and display tours set s(i,j) current solution; set tour(t,i,j) subtours; set tt(t) current subtour; set first(i,j) first (i,j) in S ; set reach(i,j) "(i,j) s connected to tour(tt)"; scalar done /0/; scalar continue; parameter results; // for reporting results( relaxed, obj )=z.l; results( relaxed, total constraints ) = match.numequ; parameter solutions(,i,j solutions( relaxed,i,j) = x.l(i,j 8

9 loop(cycle, initialization tour(t,i,j) = no; s(i,j) = no; first(i,j) = no; reach(i,j) = no; done = 0; tt(t) = no; tt(t)$(ord(t)=1) = 1; s(i,j)=yes$(x.l(i,j) > 0.5 // initialize tt(1) = yes // initialize to current solution while(not done, pick any (i,j) from remaining solutions first(i,j)=no; loop((i,j)$(card(first)=0), first(i,j) = s(i,j display first; this is he beginning of a new subtour tour(tt,first) = yes; s(first) = no; continue = 1; while(continue, find (i,j) s connected to tour(tt) note that the loop over tt is just syntax: tt contains one element reach(i,j) = no; loop((tt,k), reach(s(i,j))$tour(tt,k,j) = yes; reach(s(i,j))$tour(tt,i,k) = yes; reach(s(i,j))$tour(tt,k,i) = yes; reach(s(i,j))$tour(tt,j,k) = yes; display tour,s,reach; if reach = empty then we can stop the while loop if (card(reach)=0, continue = 0 add them to the current subtour 9

10 note that the loop over tt is just syntax: tt contains one element loop(tt, tour(tt,reach) = yes; s(reach) = no; display tour; if no remaining solutions, we are done if (card(s)=0, done=1 new subtour tt(t) = tt(t-1 // t := t + 1 cutindex(cycle,t)$(sum(tour(t,i,j),1)>0.5) = yes; check option tour:0:1:1; display tour; loop(cutindex(cycle,t), abort$(sum(tour(t,i,j),1) < 2.5) "subtour with 1 or 2 points"; if (sum(cutindex(cycle,t),1) > 1.5, cutcoeff(cycle,tour(t,i,j))$cutindex(cycle,t) = 1; cutlength(cutindex(cycle,t)) = sum(tour(t,i,j),1 option cutindex:0:1:1; option cutcoeff:0:1:1; display cutindex,cutcoeff,cutlength; solve tsp minimizing z using mip; display x.l; results(cycle, obj ) = z.l; results(cycle, cuts added ) = sum(cutindex(cycle,t), 1 results(cycle, total constraints ) = tsp.numequ; display results; else solutions(cycle,i,j) = x.l(i,j display "Optimal solution found!"; done = 1; 10

11 solutions( optimal,i,j) = x.l(i,j display results; Model plot42.gms table xy(i,) coordinates x y c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c

12 c ; display xy; file f /plot42.tex/; put f; put \documentclass{article} /; put \usepackage{amsmath} /; put \usepackage[all]{xy} /; put \begin{document} /; put \begin{figure}[h] /; put \[\begin{xy} 0;<0.5mm,0mm>: / loop(i, if(ord(i)>1, put, put (, xy(i, x ),, xy(i, y ), ){\bullet} / loop((i,j)$(solutions( relaxed,i,j)>0.5), if(ord(i)>1, put, put (, xy(i, x ),, xy(i, y ), (, xy(j, x ),, xy(j, y ), )@{-} / put \end{xy}\] / put \caption{relaxed solution} /; put \end{figure} /; put \begin{figure}[h] /; put \[\begin{xy} 0;<0.5mm,0mm>: / loop(i, if(ord(i)>1, put, put (, xy(i, x ),, xy(i, y ), ){\bullet} / loop((i,j)$(solutions( cycle1,i,j)>0.5), if(ord(i)>1, put, put (, xy(i, x ),, xy(i, y ), (, xy(j, x ),, xy(j, y ), )@{-} / put \end{xy}\] / put \caption{cycle 1 solution} /; put \end{figure} /; put \begin{figure}[h] /; put \[\begin{xy} 0;<0.5mm,0mm>: / loop(i, if(ord(i)>1, put, put (, xy(i, x ),, xy(i, y ), ){\bullet} / 12

13 loop((i,j)$(solutions( optimal,i,j)>0.5), if(ord(i)>1, put, put (, xy(i, x ),, xy(i, y ), (, xy(j, x ),, xy(j, y ), )@{-} / put \end{xy}\] / put \caption{optimal solution} /; put \end{figure} /; put \end{document} /; putclose; Model plot42.tex \documentclass{article} \usepackage{amsmath} \usepackage[all]{xy} \begin{document} \begin{figure}[h] \[\begin{xy} 0;<0.5mm,0mm>: ( , 85.00){\bullet},( , 88.00){\bullet},( , 73.00){\bullet},( , 70.00){\bullet},( , 55.00){\bullet},( , 53.00){\bullet},( , 60.00){\bullet},( , 68.00){\bullet},( , 74.00){\bullet},( 99.00, 83.00){\bullet},( 73.00, 79.00){\bullet},( 72.00, 91.00){\bullet},( 37.00, 94.00){\bullet},( 6.00, ){\bullet},( 3.00, 97.00){\bullet},( 21.00, 82.00){\bullet},( 33.00, 67.00){\bullet},( 4.00, 66.00){\bullet},( 3.00, 42.00){\bullet},( 27.00, 33.00){\bullet},( 52.00, 41.00){\bullet},( 57.00, 59.00){\bullet},( 58.00, 66.00){\bullet},( 88.00, 65.00){\bullet},( 99.00, 67.00){\bullet},( 95.00, 55.00){\bullet},( 89.00, 55.00){\bullet},( 83.00, 38.00){\bullet} 13

14 ,( 85.00, 25.00){\bullet},( , 35.00){\bullet},( , 37.00){\bullet},( , 24.00){\bullet},( , 13.00){\bullet},( , 30.00){\bullet},( , 32.00){\bullet},( , 18.00){\bullet},( , 36.00){\bullet},( , 45.00){\bullet},( , 54.00){\bullet},( , 61.00){\bullet},( , 82.00){\bullet},( , 87.00){\bullet},( , 88.00( , , 70.00( , , 55.00( , , 53.00( , , 60.00( , , 68.00( , , 74.00( , , 74.00( , 73.00, 79.00( 99.00, 72.00, 91.00( 99.00, 72.00, 91.00( 73.00, 6.00, ( 37.00, 3.00, 97.00( 6.00, 21.00, 82.00( 3.00, 33.00, 67.00( 37.00, 4.00, 66.00( 21.00, 3.00, 42.00( 4.00, 27.00, 33.00( 3.00, 52.00, 41.00( 27.00, 57.00, 59.00( 52.00, 58.00, 66.00( 33.00, 58.00, 66.00( 57.00, 99.00, 67.00( 88.00, 95.00, 55.00( 99.00, 89.00, 55.00( 88.00, 89.00, 55.00( 95.00, 85.00, 25.00( 83.00, , 35.00( 83.00, , 37.00( , , 13.00( 85.00, , 13.00( , , 30.00( , , 30.00( , , 18.00( , , 36.00( , , 36.00( , , 54.00( , , 61.00( , , 61.00( , , 82.00( , , 87.00( , , 87.00( , \end{xy}\] 14

15 \caption{relaxed solution} \end{figure} \begin{figure}[h] \[\begin{xy} 0;<0.5mm,0mm>: ( , 85.00){\bullet},( , 88.00){\bullet},( , 73.00){\bullet},( , 70.00){\bullet},( , 55.00){\bullet},( , 53.00){\bullet},( , 60.00){\bullet},( , 68.00){\bullet},( , 74.00){\bullet},( 99.00, 83.00){\bullet},( 73.00, 79.00){\bullet},( 72.00, 91.00){\bullet},( 37.00, 94.00){\bullet},( 6.00, ){\bullet},( 3.00, 97.00){\bullet},( 21.00, 82.00){\bullet},( 33.00, 67.00){\bullet},( 4.00, 66.00){\bullet},( 3.00, 42.00){\bullet},( 27.00, 33.00){\bullet},( 52.00, 41.00){\bullet},( 57.00, 59.00){\bullet},( 58.00, 66.00){\bullet},( 88.00, 65.00){\bullet},( 99.00, 67.00){\bullet},( 95.00, 55.00){\bullet},( 89.00, 55.00){\bullet},( 83.00, 38.00){\bullet},( 85.00, 25.00){\bullet},( , 35.00){\bullet},( , 37.00){\bullet},( , 24.00){\bullet},( , 13.00){\bullet},( , 30.00){\bullet},( , 32.00){\bullet},( , 18.00){\bullet},( , 36.00){\bullet},( , 45.00){\bullet},( , 54.00){\bullet},( , 61.00){\bullet},( , 82.00){\bullet},( , 87.00){\bullet},( , 88.00( , 85.00)@{-},( , 70.00( , 73.00)@{-},( , 55.00( , 70.00)@{-},( , 53.00( , 73.00)@{-},( , 60.00( , 53.00)@{-},( , 68.00( , 60.00)@{-},( , 74.00( , 68.00)@{-},( 99.00, 83.00( , 74.00)@{-},( 72.00, 91.00( 73.00, 79.00)@{-},( 37.00, 94.00( 72.00, 91.00)@{-},( 6.00, ( 37.00, 94.00)@{-} 15

16 ,( 3.00, 97.00( 6.00, 21.00, 82.00( 3.00, 33.00, 67.00( 21.00, 4.00, 66.00( 33.00, 3.00, 42.00( 4.00, 27.00, 33.00( 3.00, 52.00, 41.00( 27.00, 57.00, 59.00( 52.00, 58.00, 66.00( 73.00, 58.00, 66.00( 57.00, 99.00, 67.00( 99.00, 99.00, 67.00( 88.00, 89.00, 55.00( 88.00, 89.00, 55.00( 95.00, 83.00, 38.00( 95.00, 85.00, 25.00( 83.00, , 35.00( 85.00, , 37.00( , , 24.00( , , 13.00( , , 30.00( , , 32.00( , , 18.00( , , 36.00( , , 45.00( , , 54.00( , , 61.00( , , 61.00( , , 82.00( , , 87.00( , , 87.00( , \end{xy}\] \caption{cycle 1 solution} \end{figure} \begin{figure}[h] \[\begin{xy} 0;<0.5mm,0mm>: ( , 85.00){\bullet},( , 88.00){\bullet},( , 73.00){\bullet},( , 70.00){\bullet},( , 55.00){\bullet},( , 53.00){\bullet},( , 60.00){\bullet},( , 68.00){\bullet},( , 74.00){\bullet},( 99.00, 83.00){\bullet},( 73.00, 79.00){\bullet},( 72.00, 91.00){\bullet},( 37.00, 94.00){\bullet},( 6.00, ){\bullet},( 3.00, 97.00){\bullet},( 21.00, 82.00){\bullet},( 33.00, 67.00){\bullet},( 4.00, 66.00){\bullet},( 3.00, 42.00){\bullet},( 27.00, 33.00){\bullet},( 52.00, 41.00){\bullet} 16

17 ,( 57.00, 59.00){\bullet},( 58.00, 66.00){\bullet},( 88.00, 65.00){\bullet},( 99.00, 67.00){\bullet},( 95.00, 55.00){\bullet},( 89.00, 55.00){\bullet},( 83.00, 38.00){\bullet},( 85.00, 25.00){\bullet},( , 35.00){\bullet},( , 37.00){\bullet},( , 24.00){\bullet},( , 13.00){\bullet},( , 30.00){\bullet},( , 32.00){\bullet},( , 18.00){\bullet},( , 36.00){\bullet},( , 45.00){\bullet},( , 54.00){\bullet},( , 61.00){\bullet},( , 82.00){\bullet},( , 87.00){\bullet},( , 88.00( , , 73.00( , , 70.00( , , 55.00( , , 53.00( , , 60.00( , , 68.00( , , 74.00( , 99.00, 83.00( , 73.00, 79.00( 99.00, 72.00, 91.00( 73.00, 37.00, 94.00( 72.00, 6.00, ( 37.00, 3.00, 97.00( 6.00, 21.00, 82.00( 3.00, 33.00, 67.00( 21.00, 4.00, 66.00( 33.00, 3.00, 42.00( 4.00, 27.00, 33.00( 3.00, 52.00, 41.00( 27.00, 57.00, 59.00( 52.00, 58.00, 66.00( 57.00, 88.00, 65.00( 58.00, 99.00, 67.00( 88.00, 95.00, 55.00( 99.00, 89.00, 55.00( 95.00, 83.00, 38.00( 89.00, 85.00, 25.00( 83.00, , 35.00( 85.00, , 37.00( , , 24.00( , , 13.00( , , 30.00( , , 32.00( , , 18.00( , , 36.00( , 17

18 ,( , 45.00( , , 54.00( , , 61.00( , , 82.00( , , 87.00( , , 87.00( , \end{xy}\] \caption{optimal solution} \end{figure} \end{document} References [1] Dantzig, G., Fulkerson, R., Johnson, S., Solution of a large-scale Traveling- Salesman Problem, Operations Research, 2, 1954, pp [2] Goossens, M., Rahtz, S., Mittelbach, F., The L A TEX Graphics Companion, Addison-Wesley, [3] Lawler, E.L., Lenstra, J.K., Rinnooy Kan, A.H.G., Shmoys, D.B. (eds.), The Traveling Salesman Problem. A Guided Tour of Combinatorial Optimization, Wiley, [4] Reinelt, G., TSPLIB A Traveling Salesman Problem Library, ORSA Journal on Computing, 3 (4), pp [5] Rose, K.H., Moore, R., XY-pic Reference Manual, [6] Rose, K.H., XY-pic User s Guide,

State Capitals Directions:

State Capitals Directions: State Capitals Directions: Using the word bank of state capitals below, match the capitals to their state. Hint: Use a map of the United States to help you locate the capitals. State Capitals Albany -

More information

Industrial Conference 2013 Thursday, November 14, 2013

Industrial Conference 2013 Thursday, November 14, 2013 Goldman Sachs Industrial Conference 2013 Thursday, November 14, 2013 SINGLE SOURCE INTERMODAL DEDICATED FINAL MILE TRUCKLOAD LESS THAN TRUCKLOAD REFRIGERATED FLATBED EXPEDITED Disclosure This presentation

More information

U nion W ages and Hours in the Building Trades July 1, 1944

U nion W ages and Hours in the Building Trades July 1, 1944 UNITED STATES DEPARTMENT OF LABOR Frances Perkins, Secretary BUREAU OF LABOR STATISTICS Isador Lubin, Commissioner (on leave) A. F. Hinrichs, Acting Commissioner + U nion W ages and Hours in the Building

More information

Epinephrine Salts Medicinal Nitroglycerine P & U Listed Syringe Waste. Epinephrine Salts. Medicinal Nitroglycerine

Epinephrine Salts Medicinal Nitroglycerine P & U Listed Syringe Waste. Epinephrine Salts. Medicinal Nitroglycerine Epinephrine Salts Medicinal Nitroglycerine P & U Listed Syringe Waste Following is a list of each state and whether or not they are consistent with the EPA s stance on Epinephrine Salts, Medicinal Nitroglycerine

More information

STATE AGENCIES FOR SURPLUS PROPERTY

STATE AGENCIES FOR SURPLUS PROPERTY SUPP 1 DoD 4160.21-M STATE AGENCIES FOR SURPLUS PROPERTY ALABAMA CALIFORNIA Surplus Division California State for 4401 Northern By-Pass Surplus P.O. BOX 210487 701 Burning Tree Road Montgomery, AL 36121-0487

More information

Gaining Media Attention

Gaining Media Attention Gaining Media Attention By Ryan S. John The following chapter will help you gain media attention for your tournament or league. It contains instructions on how to create a press release, agate, and a press

More information

List of Allocation Recipients

List of Allocation Recipients List of Allocation Recipients CDFI Fund 601 Thirteenth Street, NW, Suite 200, South, Washington, DC 20005 (202) 622-8662 9 2010 New s Tax Credit Program: List of s Name of Advantage Capital Fund, AI Wainwright

More information

Be Counted, America! The Challenge Ahead An analysis of mail-in participation in the 2010 Census as door-to-door enumeration begins

Be Counted, America! The Challenge Ahead An analysis of mail-in participation in the 2010 Census as door-to-door enumeration begins May 3, 2010 Be Counted, America! The Challenge Ahead An analysis of mail-in participation in the 2010 Census as door-to-door enumeration begins On April 28, the U.S. Census Bureau announced that the nation

More information

Lesson 1. Introduction

Lesson 1. Introduction SA35 Linear Programming Spring 216 Asst. Prof. Nelson Uhan What is operations research? Lesson 1. Introduction The most influential academic discipline field you ve never heard of [Boston Globe, 24] perations

More information

DIGITAL FIBEROPTIC SENSOR TRAINING GUIDE. Basics: Calibration, Tips, and Troubleshooting

DIGITAL FIBEROPTIC SENSOR TRAINING GUIDE. Basics: Calibration, Tips, and Troubleshooting DIGITAL FIBEROPTIC SENSOR TRAINING GUIDE Basics: Calibration, Tips, and Troubleshooting Operation 1 The Basics of Sensitivity Adjustment 1 Two-point Calibration With this method, the FS-NEO Series detects

More information

Nny%l 949 I FEDERALfiESERVE^BAMK C~s-'.'i HN'uNO BOARD OF GOVERNORS OF THE FEDERAL RESERVE-S S$EM~

Nny%l 949 I FEDERALfiESERVE^BAMK C~s-'.'i HN'uNO BOARD OF GOVERNORS OF THE FEDERAL RESERVE-S S$EM~ ^ C0NFID3 ENTML- Nny%l 949 I FEDERALfiESERVE^BAMK C~s-'.'i HN'uNO BOARD OF GOVERNORS OF THE FEDERAL RESERVE-S S$EM~ V library L.4.5 November 21, 1949 CHANGES IN STATUS OF BANKS AND BRANCHES AS REPORTED

More information

REPORT OF THE COMPTROLLER OF THE CURRENCY. 565

REPORT OF THE COMPTROLLER OF THE CURRENCY. 565 1901 REPORT OF THE COMPTROLLER OF THE CURRENCY. 565 o. 90. DIVIDENDS, SIXTY-SIX IN/NUMBER, PAID TO THE CREDITORS OF INSOLVENT NATIONAL BANKS DURING THE PAST YEAR, WITH THE TOTAL DIVIDENDS IN EACH CASE

More information

ELC DAY DIGITAL ENERGY & LIGHTING CONTROL INSTRUCTION MANUAL FOR TECHNICAL SUPPORT: MLI-207(A)

ELC DAY DIGITAL ENERGY & LIGHTING CONTROL INSTRUCTION MANUAL FOR TECHNICAL SUPPORT: MLI-207(A) INSTRUCTION MANUAL LISTED Enclosed Energy Management Equipment 4D64 365 DAY DIGITAL ENERGY & LIGHTING CONTROL ELC74 FOR TECHNICAL SUPPORT: 888.500.4598 A DIVISION OF NSi INDUSTRIES, LLC USA 800.321.5847

More information

LERA Perspectives on Work

LERA Perspectives on Work LERA Perspectives on Work 2017 (Vol 21, Number 1) - 2016 (Vol 20, Number 1) - The Gig Economy: Employment Implications 2015 (Vol 19, Number 1) - Management Excellence 2014 (Vol 18, Number 1) - Mapping

More information

Webinar: Seven Critical Considerations and Best Practices for ediscovery in Patent Litigation

Webinar: Seven Critical Considerations and Best Practices for ediscovery in Patent Litigation Webinar: Seven Critical Considerations and Best Practices for ediscovery in Patent Litigation Crucial Steps for Successfully Managing ediscovery in Patent and IP Litigation About our Webinars Webinars

More information

Probate Record Work Sheet

Probate Record Work Sheet Start with what you know: Probate Record Work Sheet My ancestor s name Name of siblings Names of parents, uncles, etc State and County where he lived About when did he die Notes: Next: Refer to Carter,

More information

I-SERIES. Excellent Cost-Performance High-Accuracy Measurement. CMOS Analog Laser Sensor. Intelligent Sensor. IA Series

I-SERIES. Excellent Cost-Performance High-Accuracy Measurement. CMOS Analog Laser Sensor. Intelligent Sensor. IA Series NEW CMOS Analog Laser Sensor IA Series Excellent Cost-Performance High-Accuracy Measurement KEYENCE BRINGS YOU A GENERAL-PURPOSE ANALOG LASER SENSOR Intelligent Sensor I-SERIES NEW CMOS Analog Laser Sensor

More information

Real Time Traffic Data for Navigation ITS TEXAS 2009

Real Time Traffic Data for Navigation ITS TEXAS 2009 Real Time Traffic Data for Navigation ITS TEXAS 2009 Mission Statement Total Traffic Network strives to provide a best-in-class, real-time traffic data service for broadcast, web, wireless, and navigation

More information

Estimated U.S. Fatalities from a Russian Nuclear Retaliation

Estimated U.S. Fatalities from a Russian Nuclear Retaliation ! Estimated U.S. Fatalities from a Russian Nuclear Retaliation By: Jennifer Knox and Jessica Sleight January 23, 2017 Using data from NUKEMAP 1, Global Zero charted the estimated number of U.S. fatalities

More information

Area Detection Fiber Sensors

Area Detection Fiber Sensors NEW Fiber Unit FU Series Area Detection Fiber Sensors With the addition of the new array sensor, the FU Series can now be used in an even wider range of applications. Stable detection of targets in varying

More information

Larry Katzenstein Partner

Larry Katzenstein Partner Larry Katzenstein Partner St. Louis 314 552 6187 direct 314 552 7187 fax lkatzenstein@ Presentations 2013 Skills Training for Estate Planners; New York Law School, July 18-19, 2013 ALI-CLE Program Estate

More information

Worker Safety Awards 2008

Worker Safety Awards 2008 Worker Safety Awards 2008 April 15, 2008 Marriott New Orleans Convention Center New Orleans, La. The American Meat Institute Foundation Annual Safety Recognition Awards The primary program goals are to

More information

Ready-to-Ship items are exactly that in stock and available now. What could be easier?

Ready-to-Ship items are exactly that in stock and available now. What could be easier? FALL 2018 Ready-to-Ship items are exactly that in stock and available now. What could be easier? WORDPLAY CITY + STATE See page 5 See page 10 OUR LOCAL SETS See page 17 PEACE, LOVE & HAPPINESS See page

More information

Dominance Matrices. Text Reference: Section 2.1, p. 114

Dominance Matrices. Text Reference: Section 2.1, p. 114 Dominance Matrices Text Reference: Section 2.1, p. 114 The purpose of this set of exercises is to apply matrices and their powers to questions concerning various forms of competition between individuals

More information

Rod Hanging System for Concrete, Wood & Steel. Hangermate +

Rod Hanging System for Concrete, Wood & Steel. Hangermate + Rod Hanging System for Concrete, Wood & Steel Hangermate + + UL ESR-3889 & FM FULL LISTING PAGES 10-11 THREAD PROFILE low torque, fast installation, full concrete engagement STANDARD 1/4" BIT no need for

More information

Fourth Round 2006 New Markets Tax Credit Allocations

Fourth Round 2006 New Markets Tax Credit Allocations Fourth Round 2006 New Markets Tax Credit Allocations Name of Allocatee Location Service Area Market Financing Activity Award Amount Advantage Capital Community Development Fund, American Community Renewable

More information

2009 SCAC COMPOSITE WOMEN S SOCCER SCHEDULE (Revised 7/13/2009)

2009 SCAC COMPOSITE WOMEN S SOCCER SCHEDULE (Revised 7/13/2009) 2009 SCAC COMPOSITE WOMEN S SOCCER SCHEDULE (Revised 7/13/2009) Tuesday, September 1 Austin College @ University of Texas Dallas Centre @ Asbury (Ky.) College University of Chicago @ DePauw Millsaps @

More information

Summary Description of Proposed Changes

Summary Description of Proposed Changes To: From: 6JSC/BL/10 Page1/16 Joint Steering Committee for Development of RDA Alan Danskin, British Library Representative Subject: Revision of 9.8.1.3, 9.9.1.3, 9.10.1.3, 9.11.1.3, 10.5.1.3, 11.3.1.3,

More information

Dropbox, Inc. signed a 736,000 SF lease in San Francisco s Mission Bay making it the single largest lease in the city s history.

Dropbox, Inc. signed a 736,000 SF lease in San Francisco s Mission Bay making it the single largest lease in the city s history. FOURTH QUARTER 2017 U.S. TRENDLINES 5-Year Trend Current Quarter VACANCY ABSORPTION 11.5% Lowest in 10 years 13.4 MSF All signs point to continued growth 31 quarters of More tenants positive seeking growth

More information

State of the U.S. Retail Market

State of the U.S. Retail Market State of the U.S. Retail Market 2015 Q1 Review and Forecast Copyright 2015 CoStar Realty Information, Inc. No reproduction or distribution without permission. The following information includes projections

More information

BUILD YOUR FUTURE: State Proclamation Guidelines

BUILD YOUR FUTURE: State Proclamation Guidelines BUILD YOUR FUTURE: State Proclamation Guidelines Please Note: All proclamations must be requested by a resident of the state in question. Requests by non-residents are often denied. Proclamation requests

More information

U.S. Economic, Office and Industrial Market Overview and Outlook. July 16, 2014

U.S. Economic, Office and Industrial Market Overview and Outlook. July 16, 2014 2014 U.S. Economic, Office and Industrial Market Overview and Outlook July 16, 2014 U.S. Economic Overview U.S. GDP Growth Persistent Despite 1Q Polar Vortex Annualized Quarterly Percent Change 10% 5%

More information

Recommended Citations

Recommended Citations Recommended Citations Entire set Kunkel, K., R. Frankson, J. Runkle, S. Champion, L. Stevens, D. Easterling, and B. Stewart (Eds.), 2017: State Climate Summaries for the United States. NOAA Technical Report

More information

Characteristics of Competitive Places: Changing Models of Economic Dynamism

Characteristics of Competitive Places: Changing Models of Economic Dynamism Characteristics of Competitive Places: Changing Models of Economic Dynamism IEDC/IASP 2009 Conference Technology-Led Economic Development World Science and Technology Park Research Triangle Park, NC June

More information

CMBS: Red Yellow Green Update, Fourth Quarter 2008 Quarterly Assessment of U.S. Property Markets

CMBS: Red Yellow Green Update, Fourth Quarter 2008 Quarterly Assessment of U.S. Property Markets STRUCTU FINANCE Special Report CMBS: Red Yellow Green Update, Fourth Quarter 2008 AUTHS: Keith Banhazl VP-Sr Analyst (212) 553-1485 Keith.Banhazl@moodys.com Jared Noordyk Senior Associate (212) 553-4601

More information

II. PAYMENTS made to political parties of states or political subdivisions (list by state)

II. PAYMENTS made to political parties of states or political subdivisions (list by state) Name of Regulated Entity: Frasca & Associates, LLC Report Period: Fourth Quarter of 2018 I. CONTRIBUTIONS made to officials of a municipal entity (list by state) Complete name, title (including any city/county/state

More information

The Geography of Innovation Commercialization in the United States During the 1990s

The Geography of Innovation Commercialization in the United States During the 1990s Iowa State University From the SelectedWorks of Joshua L. Rosenbloom February, 2007 The Geography of Innovation Commercialization in the United States During the 1990s Joshua L. Rosenbloom, University

More information

F O U R T H Q U A R T E R

F O U R T H Q U A R T E R FOURTH QUARTER 2018 U.S. TRENDLINES 5-Year Trend Current Quarter UNEMPLOYMENT RATE 3.9% Strongest quarter for job gains in 2018 RETAIL SALES All signs GROWTH point to continued growth More tenants seeking

More information

S E C O N D Q U A R T E R

S E C O N D Q U A R T E R SECOND QUARTER 2018 U.S. TRENDLINES 5-Year Trend VACANCY Current Quarter ABSORPTION All signs point to continued growth More tenants seeking spaces than 8 consecutive years availabilities - of especially

More information

OFFICERS DIRECTORS. COMMITTEES

OFFICERS DIRECTORS. COMMITTEES News Volume XVI Number 13 March 27. 1948 I.... OFFICERS DIRECTORS. COMMITTEES.. GIFFORD, WALTER, Chairman of the Board, American Tel. & Tel. C. O. BICKELHAUPT, Vice- President, American Telephone BROWN,

More information

CIVIL DEFENSE NATIONAL RADIO SYSTEM HF NETS

CIVIL DEFENSE NATIONAL RADIO SYSTEM HF NETS CIVIL DEFENSE NATIONAL RADIO SYSTEM HF NETS 2.3210 FOXTROT 06 (SIMPLEX) 2.3610 FOXTROT 07 (SIMPLEX) 2.3750 FOXTROT 08 (SIMPLEX) 2.4460 FOXTROT 09 (SIMPLEX) 2.6590 FOXTROT 10 (SIMPLEX) 3.3420 FOXTROT 11

More information

MANUFACTURING Million. Want More? gijobs.com. Average compensation in dollars per full-time equivalent worker, 2011

MANUFACTURING Million. Want More? gijobs.com. Average compensation in dollars per full-time equivalent worker, 2011 In the recent U.S. industrial rebound, about 85 percent of the job growth in occurred in automobiles, machinery, and regional-supplier industries Gross job growth in US during the recovery, Jan 2010 to

More information

IIIIII I IIIIII I I Control Number: 20366

IIIIII I IIIIII I I Control Number: 20366 IIIIII I IIIIII I I Control Number: 20366 IIII I Ill Ill 111 I1 I1 Item Number: 830 Addendum StartPage: 0 @ Xcel Energymi 816 Congress Avenue, Suite 1130 Austin,Texas 78701-2471 June 4,2004 Ms. Courtney

More information

University of Denver Franklin L. Burns School of Real Estate & Construction Management. Dividend Capital Research

University of Denver Franklin L. Burns School of Real Estate & Construction Management. Dividend Capital Research Glenn R. Mueller, Ph.D. Professor University of Denver Franklin L. Burns School of Real Estate & Construction Management & Real Estate Investment Strategist Dividend Capital Research glenn.mueller@du.edu

More information

State Profiles of America s High- Growth Companies

State Profiles of America s High- Growth Companies The Ascent of America s High-Growth Companies State Profiles of America s High- Growth Companies State-by-state analysis of Inc. 500 firms over thirty years Yasuyuki Motoyama and Brian Danley September

More information

IRM (Investor Relationship Management)

IRM (Investor Relationship Management) Targeting: Como conhecer e gerenciar sua base de acionistas? IRM (Investor Relationship Management) Sandra Matsumoto, Client Relationship Manager Agosto de 2009 Managing your Investors 2 Institutional

More information

Navigation & GPS 30 Hour Part 1 Student Workbook Issue: US370/30/2a-IQ-0202B

Navigation & GPS 30 Hour Part 1 Student Workbook Issue: US370/30/2a-IQ-0202B Navigation & GPS 30 Hour Part 1 Issue: US370/30/2a-IQ-0202B Copyright 2006,. No part of this Publication may be adapted or reproduced in any material form, without the prior written permission of. Written

More information

Department of Economics and Policy Research Institute University of Kansas and National Bureau of Economic Research W P S T A E

Department of Economics and Policy Research Institute University of Kansas and National Bureau of Economic Research W P S T A E THE UNIVERSITY OF KANSAS WORKING PAPERS SERIES IN THEORETICAL AND APPLIED ECONOMICS WHY INNOVATIVE ACTIVITY VARIES? THE ROLE OF HIGHER EDUCATION IN LOCAL INNOVATIVE ACTIVITY Joshua L. Rosenbloom Department

More information

Implementation of an Android-Based Disaster Management System

Implementation of an Android-Based Disaster Management System Implementation of an Android-Based Disaster Management System JOVILYN THERESE B. FAJARDO, CARLOS M. OPPUS Department of Electronics, Computer, and Communications Engineering Ateneo de Manila University

More information

ERGO & access assembly

ERGO & access assembly ERGO & access assembly W E C O V E R YO U R I N F R A S T R U C T U R E 800.626.4653 www.ejiw.com MADE IN THE USA ergo access assembly ergo access assembly An advanced level of functionality and safety

More information

Sanitizing Sink Heater

Sanitizing Sink Heater Sanitizing Sink Heater 3CS Series 3CS-3 3CS-4 3CS-6 3CS-9 REPLACEMENT PARTS LIST HATCO 3CS SERIES SANITIZING SINK HEATERS 19 19 38 33A Model Designation 3CS-X 3=Three C=Compartment S=Sink Heater X=Kilowatts

More information

1

1 www.icomamerica.com 1 Welcome to the World of Ham Radio! Thank you for your interest in The Adventures of Zack and Max - The Odyssey Begins. This is your first step in discovering the excitement of amateur

More information

Demographic Characteristics and Trends: Implications for Rural Texas

Demographic Characteristics and Trends: Implications for Rural Texas Demographic Characteristics and Trends: Implications for Rural Texas Texas Farm Bureau AgLead XI FarmLead IV March 19, 2013 Austin, Texas Lloyd Potter Office: (210) 458-6530 Email: Lloyd.Potter@osd.state.tx.us

More information

2012 Canadian Apartment Investment Conference

2012 Canadian Apartment Investment Conference 2012 Canadian Apartment Investment Conference The US Multifamily Market: An Answer to Economic Pressure Greystar Real Estate Partners A Fully Integrated Multifamily Service Provider Greystar Real Estate

More information

FOREST HILLS DEVELOPMENT

FOREST HILLS DEVELOPMENT FOREST HILLS DEVELOPMENT WAL-MART NEIGHBORHOOD MARKET ANCHORED 3485 W. Wedington Road, Fayetteville, Arkansas 72704 35,000 +/- Square Foot Wal-Mart Neighborhood Market Anchored 76 Acres of Mixed-Use Planned

More information

Oxygen Supplies and Equipment

Oxygen Supplies and Equipment DMEPOS Competitive Bidding Program Bid Preparation Worksheet Round 2 & Bid Calculations Oxygen Supplies and Equipment ***Please read the important information provided on page 4 before proceeding to the

More information

From Path-Segment Tiles to Loops and Labyrinths

From Path-Segment Tiles to Loops and Labyrinths Proceedings of Bridges 2013: Mathematics, Music, Art, Architecture, Culture From Path-Segment Tiles to Loops and Labyrinths Robert Bosch, Sarah Fries, Mäneka Puligandla, and Karen Ressler Dept. of Mathematics,

More information

State Population Yes No.Alabama 4,822,023 2 Alabama: Sessions (R-AL), Nay.Alaska 731,449 2 Alaska: Begich (D-AK), Nay.Arizona 6,553, Arizona:

State Population Yes No.Alabama 4,822,023 2 Alabama: Sessions (R-AL), Nay.Alaska 731,449 2 Alaska: Begich (D-AK), Nay.Arizona 6,553, Arizona: State Population Yes No.Alabama 4,822,023 2 Alabama: Sessions (R-AL), Nay.Alaska 731,449 2 Alaska: Begich (D-AK), Nay.Arizona 6,553,255 1 1 Arizona: Flake (R-AZ), Nay.Arkansas 2,949,131 2 Arkansas: Boozman

More information

A domestic address must contain the following data elements:

A domestic address must contain the following data elements: ADDRESS EDITS FOR FILE MAINTENANCE ATTACHMENT TO SERVICE REQUEST #16941 FINAL 1.0 INTRODUCTION There are minimal edits in the Payroll/Personnel System (PPS) for employee address formatting which is causing

More information

CBS ANNOUNCES 16 NEW BIG BROTHER HOUSEGUESTS. Summer Reality Hit Debuts with a Two Night Premiere on June 28 and June 29

CBS ANNOUNCES 16 NEW BIG BROTHER HOUSEGUESTS. Summer Reality Hit Debuts with a Two Night Premiere on June 28 and June 29 June 19, 2017 CBS ANNOUNCES 16 NEW BIG BROTHER HOUSEGUESTS Summer Reality Hit Debuts with a Two Night Premiere on June 28 and June 29 CBS announced today 16 Houseguests who will embark on a new season

More information

Economic Recovery in the Rocky Mountain West: Metro Trends and Bottom-up Responses

Economic Recovery in the Rocky Mountain West: Metro Trends and Bottom-up Responses Lectures/Events (BMW) Brookings Mountain West 2-15-2011 Economic Recovery in the Rocky Mountain West: Metro Trends and Bottom-up Responses Mark Muro Brookings Institution, mmuro@brookings.edu Follow this

More information

Easter Seals Alabama 5960 East Shirley Ln, Montgomery, AL Phone: (334)

Easter Seals Alabama 5960 East Shirley Ln, Montgomery, AL Phone: (334) For nearly 100 years, Easterseals has offered help, hope and answers to more than a million children and adults living with autism and other disabilities or special needs and their families each year.

More information

TYPE III DATES OF USE

TYPE III DATES OF USE TYPE III DATES OF USE This census of dated uses of the eight Type III overprint issues is arranged in issue-date order. Included are Scott numbers 46 (two printings), 47, 48 (two printings), 67, J10 and

More information

EEPOET OF THE COMPTROLLER OF THE CTJBRENCY 161

EEPOET OF THE COMPTROLLER OF THE CTJBRENCY 161 EEPOET OF THE COMPTROLLER OF THE CTJBRENCY 161 TABLE NO. 5. National banks reported in from November 1, \ to October 31,, the names, where known, of succeeding ;ng banks in cases of sue" cession, and date

More information

Portland State of the Market 2016

Portland State of the Market 2016 RESILIENT & RISING Portland State of the Market 2016 Portland why all the hype? Source: JLL Research Highest GDP Growth Oregon has the fastest real GDP growth in the nation at 3.9% in Q1 2016 Highest Job

More information

Digital CMOS Laser Sensor GV Series. Up to. [3.3'] Away. Stable detection of. metal targets. Innovative solution for.

Digital CMOS Laser Sensor GV Series. Up to. [3.3'] Away. Stable detection of. metal targets. Innovative solution for. Digital CMOS Laser Sensor GV Series Up to 1m [3.3'] Away Stable detection of metal targets Innovative solution for black targets Conventional laser sensors have problems with... Metals Multiple reflection

More information

A New Space-Filling Curve Based Method for the Traveling Salesman Problems

A New Space-Filling Curve Based Method for the Traveling Salesman Problems ppl. Math. Inf. Sci. 6 No. 2S pp. 371S-377S (2012) New Space-Filling urve ased Method for the Traveling Salesman Problems Yi-hih Hsieh 1 and Peng-Sheng You 2 1 Department of Industrial Management, National

More information

Directors of Federal Reserve Banks and Branches

Directors of Federal Reserve Banks and Branches February 1960 Directors of Federal Reserve Banks and Branches Following is a list of the directorates of the Federal Reserve Banks and branches as at present constituted. The list shows, in addition to

More information

Carroll Co-Invest Fund I, LP Investor Update, Q4 2013

Carroll Co-Invest Fund I, LP Investor Update, Q4 2013 Carroll Co-Invest Fund I, LP Investor Update, Q4 2013 January 31, 2014 We are pleased to report that the Carroll Co-Invest Fund I concluded the 4th quarter 2013 with continued strong performance across

More information

Glo-Ray. Replacement Parts List. Merchandising Display Warmers. GRSDH Series CAUTION

Glo-Ray. Replacement Parts List. Merchandising Display Warmers. GRSDH Series CAUTION Glo-Ray Merchandising Display Warmers GRSDH Series Model Name Page GRSDH-18... GRSDH-... GRSDH-30... GRSDH-36... GRSDH-1... GRSDH-5... GRSDH-60... IMPORTANT NOTE: Locate the Specification Label on unit

More information

Effective November corby INSTALLATION GUIDE

Effective November corby INSTALLATION GUIDE Effective November 2017 corby INSTALLATION GUIDE PRODUCT INSTALLATION CBYCTxxxxHxx - Occasional table CBYRxx32 - Peninsula table CBYRTxxxx - Freestanding work table CBYCMPWxxHxx - Modesty panel CBYRxx32

More information

GAO U.S. COINS. The Federal Reserve Banks Are Fulfilling Coin Demand, but Optimal Inventory Ranges Are Undefined

GAO U.S. COINS. The Federal Reserve Banks Are Fulfilling Coin Demand, but Optimal Inventory Ranges Are Undefined GAO March 2008 United States Government Accountability Office Report to the Subcommittee on Domestic and International Monetary Policy, Trade, and Technology, Committee on Financial Services, House of

More information

Medium voltage Marketing contacts

Medium voltage Marketing contacts ELEC TR I FI C ATI O N PRO D U C T S Medium voltage Marketing contacts 2 E P M E D I U M V O LTA G E Don't look the other way. Make quality happen. MARKETING CONTACTS 13 EP Service - medium & low voltage

More information

IPA TEXAS MULTIFAMILY IPA TEXAS. Institutional and Major Private Investor Brokerage and Advisory Services

IPA TEXAS MULTIFAMILY IPA TEXAS. Institutional and Major Private Investor Brokerage and Advisory Services IPA TEXAS MULTIFAMILY IPA TEXAS Institutional and Major Private Investor Brokerage and Advisory Services Mission Statement Our mission is to develop long-term advisory relationships with major private

More information

Metros at the Vanguard of Exports and Trade: Delivering the Next U.S. Economy

Metros at the Vanguard of Exports and Trade: Delivering the Next U.S. Economy Metros at the Vanguard of Exports and Trade: Delivering the Next U.S. Economy @BrookingsMetro @Amy_Liuw Metropolitan Policy Program at BROOKINGS NASBITE International Conference Memphis, TN! April 3, 2014

More information

DCN Inquiry Response

DCN Inquiry Response DCN 7695 9 August 2005 Inquiry Response Re: BI-0193,CT-0818, Leases/Land Ownership at ANG Facilities Requester: Mr. Ken Small (BRAC Commission Staff) Question: Please provide a list or table that identified

More information

Regional Innovation Ecosystems:

Regional Innovation Ecosystems: Regional Innovation Ecosystems: The Role of the University in Fostering Economic Growth Ross DeVol Chief Research Officer Milken Institute Caltech Giant High Level Forum, Leading Innovation Ecosystems

More information

THE DEVELOPMENT OF THE CAPTIVE SNOW LEOPARD POPULATION BETWEEN

THE DEVELOPMENT OF THE CAPTIVE SNOW LEOPARD POPULATION BETWEEN CHAPTER 16 THE DEVELOPMENT OF THE CAPTIVE SNOW LEOPARD POPULATION BETWEEN 1984- Leif Blomqvist Bi-annual Snow Leopard conferences have been arranged since 1978 when the First International Snow Leopard

More information

Solving Sudoku with Genetic Operations that Preserve Building Blocks

Solving Sudoku with Genetic Operations that Preserve Building Blocks Solving Sudoku with Genetic Operations that Preserve Building Blocks Yuji Sato, Member, IEEE, and Hazuki Inoue Abstract Genetic operations that consider effective building blocks are proposed for using

More information

Alan L. Dorris, PhD Principal Consultant

Alan L. Dorris, PhD Principal Consultant 1075 Peachtree Street, NE Suite 3750 Atlanta, GA 30309 P 770.487.2138 Alan L. Dorris, PhD Principal Consultant Professional Profile: Alan Dorris founded Dorris and Associates in 1982 to provide consulting

More information

HEALTHCARE ADVISORY SERVICES

HEALTHCARE ADVISORY SERVICES HEALTHCARE ADVISORY SERVICES Building Value In Healthcare Real Estate HEALTHCARE ADVISORY SERVICES TRANSWESTERN REAL ESTATE SERVICES DEDICATED TO HEALTHCARE Transwestern s Healthcare Advisory Services

More information

L.4.5 July-16, 1952 CHANGES IN STATUS OF BANKS AND BRANCHES AS REPORTED DURING JUNE Name and location of banks and branches.

L.4.5 July-16, 1952 CHANGES IN STATUS OF BANKS AND BRANCHES AS REPORTED DURING JUNE Name and location of banks and branches. THIS COMPILATION IS DERIVED LARGELY FROM SECONDARY SOURCES., NOT AN OFFICIAL REPORT OF CHANGES IN THE BANKING STRUCTURE. flal BOARD OF GOVERNORS OF THE FEDERAL RESERVE SYSTEM" L.4.5 July-16, 1952 CHANGES

More information

North American Business Activity Statistics

North American Business Activity Statistics Second Quarter 2014 XTeam Partner: Strategic Retail Advisors (Boston, MA) Room & Board: Newbury Street Flagship Store (39,000 SF) WE ARE over 400 professionals in 35 offices throughout North America. We

More information

SENIOR OFFICERS AND DIRECTORS OF FEDERAL RESERVE BANKS

SENIOR OFFICERS AND DIRECTORS OF FEDERAL RESERVE BANKS 1940 FEDERAL RESERVE SYSTEM 73 SENIOR OFFICERS AND DIRECTORS OF FEDERAL RESERVE BANKS (December 31, 1940) CHAIRMEN AND DEPUTY CHAIRMEN Federal Reserve Bank of Boston New York Philadelphia Cleveland Richmond.

More information

FEDERAL ADVISORY COUNCIL

FEDERAL ADVISORY COUNCIL 1940 72 ANNUAL REPORT OF BOARD OF GOVERNORS FEDERAL ADVISORY COUNCIL (December 31, 1940) OFFICERS President, EDWARD E. BROWN Vice President, HOWARD A. LOEB Secretary, WALTER LICHTENSTEIN EXECUTIVE COMMITTEE

More information

Technology and the Future Warrior

Technology and the Future Warrior Thursday, September 23, 2004 Technology and the Future Warrior PROTECTING SOLDIERS IN THE 21ST CENTURY Jean-Louis Dutch DeGay U.S. Army Future Force Warrior Technology Program Steve Altes 84 Moderator

More information

Alabama Shawn Stinson,, Alabama Phone: Fax:

Alabama Shawn Stinson,, Alabama Phone: Fax: Alabama Beverly Bell-Shambley, Ph.D. Associate Commissioner for Mental Health and Substance Abuse Services, Alabama 100 North Union Street Montgomery, Alabama 36130-1410 Phone: (334) 242-3962 (334) 242-3025

More information

2013 Christmas and New Years Train Plan

2013 Christmas and New Years Train Plan 200 Danville Columbus N A A R R R R N A A R R R R N 201 Harrisburg Rossville N R/L A A R R R N R/L A A R R R N 202 Rossville Harrisburg N R/L A A R R R N R/L A A R R R N 203 Rutherford Atlanta N C A A

More information

SCHOOL OF INFORMATICS AND COMPUTING

SCHOOL OF INFORMATICS AND COMPUTING INDIANA UNIVERSITY SCHOOL OF INFORMATICS AND COMPUTING SPRING CAREER FAIR BLOOMINGTON CONVENTION CENTER THURSDAY, JANUARY 26, 2017 11 AM 4 PM Special Thanks to Our Gold Sponsors TWEET about it #SOICFair

More information

Thrift Institutions Advisory Council

Thrift Institutions Advisory Council 1985 Directories and Meetings 253 MERVIN WINSTON, Vice President, First Bank System, Inc., Minneapolis, Minnesota MICHAEL ZOROYA, Senior Vice President of Credit, The May Department Stores, St. Louis,

More information

INDUSTRIAL LEASE STATISTICS 6.0% 5.5% 5.0% 4.5% 4.0% 3.5% 3.0% Q2 13 Q3 13 Q4 13

INDUSTRIAL LEASE STATISTICS 6.0% 5.5% 5.0% 4.5% 4.0% 3.5% 3.0% Q2 13 Q3 13 Q4 13 MARKET WATCH HOUSTON INDUSTRIAL AUGUST 0 RECENT INDUSTRIAL LEASES East-Southeast Far :: Packwell,000 SF renewal and expansion at Bayport Distribution Center Northwest Near :: Dal-Tile Distribution 37,9

More information

NEW CORE FABRICS 8/8/12

NEW CORE FABRICS 8/8/12 NEW CORE FABRICS 8/8/12 Price Coding We have moved to a numeric coding system rather than the former color code. The number for each swatch can be found on the upper left hand corner of the details sticker

More information

DELIVERY ROUTES & SCHEDULES

DELIVERY ROUTES & SCHEDULES DELIVERY ROUTES & SCHEDULES Azure s mission is about each member of our Team receiving joy and fulfillment as we strive to serve our customers the most abundant, life-giving products, information, and

More information

Dynamic Programming. Objective

Dynamic Programming. Objective Dynamic Programming Richard de Neufville Professor of Engineering Systems and of Civil and Environmental Engineering MIT Massachusetts Institute of Technology Dynamic Programming Slide 1 of 35 Objective

More information

Click to edit Master title style The State of the Venture Capital Industry Click to edit Master text styles

Click to edit Master title style The State of the Venture Capital Industry Click to edit Master text styles The State of the Venture Capital Industry Bobby Franklin President Third & level CEO of NVCA Southeast Venture Conference March 16 Overview Click Venture to edit capital Master stats text at-a-glance styles

More information

Glo-Ray. Replacement Parts List. Heated Glass Merchandisers. GR3SDH and GR3SDS Series CAUTION

Glo-Ray. Replacement Parts List. Heated Glass Merchandisers. GR3SDH and GR3SDS Series CAUTION Glo-Ray Heated Glass Merchandisers GR3SDH and GR3SDS Series IMPORTANT NOTE: Locate the Specification Label on unit to determine exact Model Name and electrical specifications. This information is needed

More information

TALE OF A TAIL. We've made a near perfect one (tail) for critical measurement of wind direction. We call it Quick 1 because it has

TALE OF A TAIL. We've made a near perfect one (tail) for critical measurement of wind direction. We call it Quick 1 because it has TALE OF A TAIL We've made a near perfect one (tail) for critical measurement of wind direction. We call it Quick 1 because it has a distance constant of 2.5 feet and a damping ratio of 0.6. Overshoot is

More information

Model: PRO-600 Installation Instructions

Model: PRO-600 Installation Instructions This antenna can be used for reception of XM or Sirius Satellite Radio or both simultaneously. Its internal voltage regulator makes it compatible with all generations and models of XM and Sirius radios.

More information

Matching Father/Son Neckties

Matching Father/Son Neckties White Tie Saver TCS002 (2 pack) $2.95 The Tie Saver is used to restrain your tie by attaching it to your shirt. It holds your tie securely in place without causing any damage to either your tie or your

More information

Lights Out for Birds Programs in North America

Lights Out for Birds Programs in North America Lights Out for Birds s in North America One of the simplest ways to reduce mortality from bird collisions is to eliminate the light pollution that draws night-flying migrants into areas where they will

More information