Drip: A Schematic Drawing Interpreter

Size: px
Start display at page:

Download "Drip: A Schematic Drawing Interpreter"

Transcription

1 M A R C H WRL Researh Report 95/1 Drip: A Shemati Drawing Interpreter Ramsey W. Haddad d i g i t a l Western Researh Laboratory 250 University Avenue Palo Alto, California USA

2 The Western Researh Laboratory (WRL) is a omputer systems researh group that was founded by Digital Equipment Corporation in Our fous is omputer siene researh relevant to the design and appliation of high performane sientifi omputers. We test our ideas by designing, building, and using real systems. The systems we build are researh prototypes; they are not intended to beome produts. There are two other researh laboratories loated in Palo Alto, the Network Systems Lab (NSL) and the Systems Researh Center (SRC). Another Digital researh group is loated in Cambridge, Massahusetts (CRL). Our researh is direted towards mainstream high-performane omputer systems. Our prototypes are intended to foreshadow the future omputing environments used by many Digital ustomers. The long-term goal of WRL is to aid and aelerate the development of high-performane uni- and multi-proessors. The researh projets within WRL will address various aspets of high-performane omputing. We believe that signifiant advanes in omputer systems do not ome from any single tehnologial advane. Tehnologies, both hardware and software, do not all advane at the same pae. System design is the art of omposing systems whih use eah level of tehnology in an appropriate balane. A major advane in overall system performane will require reexamination of all aspets of the system. We do work in the design, fabriation and pakaging of hardware; language proessing and saling issues in system software design; and the exploration of new appliations areas that are opening up with the advent of higher performane systems. Researhers at WRL ooperate losely and move freely among the various levels of system design. This allows us to explore a wide range of tradeoffs to meet system goals. We publish the results of our work in a variety of journals, onferenes, researh reports, and tehnial notes. This doument is a researh report. Researh reports are normally aounts of ompleted researh and may inlude material from earlier tehnial notes. We use tehnial notes for rapid distribution of tehnial material; usually this represents researh in progress. Researh reports and tehnial notes may be ordered from us. You may mail your order to: Tehnial Report Distribution DEC Western Researh Laboratory, WRL University Avenue Palo Alto, California USA Reports and tehnial notes may also be ordered by eletroni mail. Use one of the following addresses: Digital E-net: Internet: JOVE::WRL-TECHREPORTS [email protected] UUCP: depa!wrl-tehreports To obtain more details on ordering by eletroni mail, send a message to one of these addresses with the word help in the Subjet line; you will reeive detailed instrutions. Reports and tehnial notes may also be aessed via the World Wide Web:

3 Ramsey W. Haddad Marh, 1995 Abstrat This paper presents a design apture system in whih shematis are translated into a proedural netlist speifiation language. The iruit designer draws shematis with a standard strutured graphis editor that knows nothing about netlists or shematis. The translator program analyzes the strutured graphis output file and translates it into a proedural netlist speifiation. d i g i t a l Western Researh Laboratory 250 University Avenue Palo Alto, California USA

4 ii

5 Table of Contents 1. Introdution 1 2. Basis Simple Example Strutured Graphis 3 3. Generating Proedures Frames and Evaluation D Ordering 5 4. Drawing Interpretation Ions 8 5. Analysis of Non-Evaluation Objets Binding Text to Objets Wires Wire Subsripting Error Reporting Experienes 12 Aknowledgements 12 Referenes 12 iii

6 iv

7 List of Figures Figure 1: Code Generated for "CELL: orn" 2 Figure 2: 2D ordering of objets 5 Figure 3: Inomparable Retangles 6 Figure 4: "onforming" ions 8 Figure 5: Sample "non-onforming" ions 9 Figure 6: Code Generated by "Ion" Region Proedure for Figure 4 9 Figure 7: Juntions and Connetors 10 Figure 8: Wire Subsripting 11 v

8 vi

9 1. Introdution In the history of design apture systems [5], many of them are limited to being either entirely text-based or entirely shemati-based. This is very limiting in that there is no single best hoie between these two methods. Typially, some portions of a design are best represented as text and others are best represented as shematis. For example, the low-level unique ells of a design rafted by iruit designers are usually best represented as a shemati. A quik test of this is to show a iruit designer the text-based equivalent design of suh a ell and ask what it does. Her first step will be to translate the design into a shemati - only then an she an easily determine the funtion. This suggests that the shemati was the orret representation in the first plae. On the other hand, ells suh as ontrol equations are more onise and easily modifiable in a textual representation. A good system must allow the designer to mix between text-based and shemati-based representations on a ell by ell basis. Another important aspet of many designs is the frequent need to reuse an already existing ell, but with a few small hanges. A poor CAD system would require the designer to opy an existing ell, rename it and modify it for the new use. When this happens often enough, the proess beomes tedious and updating modifiations beomes very diffiult. Thus, a good system must allow the designer to speify ells in a parameterized manner [7], so that the CAD system an generate many variations from one basi design. One the parameterization of ells is allowed, the question arises as to how powerful a desription language should be allowed to desribe the parameterization. Anything short of a full programming language is awkwardly restritive. One the parameterization has the power of a full programming language, the designer is not only designing a iruit, but is also writing a omputer program. Combining all these ideas results in a system similar to one developed at Xerox PARC [1, 2]. With their shemati editor, parameterized ells are designed using the full power of a programming language. One drawbak of suh a system, however, is that it involved a fairly tight oupling of the graphis editor to the design apture system and used a large number of expliit but non-visible bindings between text and objets that ould lead to frequently misleading shematis. In the layout generation system [8] developed for our miroproessor design projets [4], we modify this approah. A design is represented by a set of proedures. When ompiled and exeuted, they build an annotated hierarhial netlist as internal data strutures. To augment this text-based approah, designers an use shematis as a graphial proedure language. The designer reates these shematis with a standard strutured graphis editor. The drawing translator drip analyzes the shematis reated with the graphis editor to generate the equivalent textual desription. This approah is similar to that taken by WireC [6] and its predeessor, WireLisp [3, 10]. Drip has a more general evaluation mehanism than WireC, and uses a very different understanding of order of evaluation for objets, inluding an intuitive 2D ordering. This enables us to, for example, allow multiple proedure definitions in one shemati file and to separate the loations of the delaration of an ion and the definition of the proedure orresponding to that ion. 1

10 The mehanis and design issues surrounding the drawing translator are the fous of this paper. We will mention aspets of the overall layout generation system that drip is a part of only as neessary; another paper [8] desribes this overall system more ompletely. 2. Basis 2.1. Simple Example 1 Cell* orn (int n, Power *p) { 2 har key[500]; // the ell ahe key 3 sprintf(key,"orn_%s_%s",tostring(n),tostring(p)); 4 CACHECELL; 5 LOCAL(GenW0, bit()); 6 INPUT(i, L1(n)); 7 INPUT(Gnd, signal); 8 INPUT(Vee1, signal); 9 INPUT(Vs, signal); 10 INPUT(Vr1, signal); 11 OUTPUT(o, L1()); 12 LOCAL(, L2()); 13 { 14 for (int k=0; k<n; k++) 15 {instane = ell->addinstane(npn(p)); 16 instane->setbinding("b",i(k),"",gnd,"e",);} 17 } 18 {instane = ell->addinstane(res(p)); 19 instane->setbinding("r0",gnd,"r1",genw0);} 20 {instane = ell->addinstane(ls(p)); 21 instane->setbinding("a",genw0,"b",o);} 22 {instane = ell->addinstane(isr(p)); 23 instane->setbinding("in",);} 24 {instane = ell->addinstane(npn(p)); 25 instane->setbinding("b",vr1,"",genw0,"e",);} 26 SetLayoutKey(ell,"Leaf"); 27 ENDCELL Inputs: L1(n) i; Internals: L2() ; Publis: signal Gnd,Vee1,Vs,Vr1; :for (int k=0; k<n; k++) Gnd i[k] b Npn (p) e Layout:"Leaf" Gnd r0 (p) Res r1 (p) a LS in ISr(p) Outputs: L1() o; Vr1 (p) Npn b o CELL: orn(int n, Power *p) b e Figure 1: Code Generated for "CELL: orn" Figure 1 shows a sample shemati and the ode generated when drip analyzes it. The resulting proedure orn generates and returns the netlist for an n-way OR gate. Most of the wires are delared in the shemati and hene also in the generated C++ proedure. The ode that is generated from the delarations of "Inputs" (line 6), "Publis" (lines 7-10), "Outputs" (line 11), and "Internals" (line 12) is easily identifiable. One wire, onneting the bottom of the resistor to the npn transistor, is drawn but not delared in the shemati. Hene, drip assigns it a generated name and delares the wire (line 5). For eah of the 5 ions in the shemati drip generates a all to the appropriate netlist generation proedure for that subell (lines 15, 18, 20, 22 and 24). It passes the parameter "p" to these subell generators. drip generates ode to bind the external wires of the sub-ells to the appropriate wires in the urrent ell (lines 16, 19, 21, 23 and 25). But a number of issues raised in this simple example are not so lear: How does drip deide in what order to generate the different piees of ode? How does drip know what proedures to all to generate sub-ells? How does drip know whih wires to bind to whih terminals? What tradeoffs are made in answering these questions? There are a number of philosophies that guided the design of the drawing interpreter. 2

11 The graphi editors should not have to know any of the semantis of the drawing translator or the underlying language. The drawings should have no "hidden information": a human should be able to understand the drawing ompletely by looking at a paper opy. The drawing translator should be robust. That is, it should be fairly insensitive to minor hanges to the drawing; two drawings that look the same to the naked eye should not have different interpretations. The drawing translator should be able to translate drawings from a number of graphis editors. The drawing translator should be strit: if some graphial situation is ambiguous, forbid it. This helps ensure the readability of the final graphi language. The drawing translator should behave in aord with people s intuition and expetations. We only break these guidelines when useability or strong traditions demand Strutured Graphis One goal is for the shemati translator drip to be as independent of the drawing program as possible. As a first step, drip is an entirely separate program from our drawing program -- the generi idraw variant of Unidraw [9]. The only way that the two programs an ommuniate is through files. The shemati translator reads the output files of the drawing program, muh as a ompiler reads files written by a text editor. To fore independene, another goal is that the shemati translator be easily retargetable to other drawing programs. Drip ensures this by parsing all input files into an intermediate representation and performing all other operations on this intermediate representation. This representation is a strutured graphis world with a very small set of primitive objets (lines, irles, retangles, and text) and the ability to group primitives together into a single objet. All other graphi primitives that may be present in the input file are regarded as ornamental and are filtered out in the proess of translating into the intermediate representation. Any graphis editor whose output an be easily parsed into this representation an be used for shemati generation. This simple strutured graphis world prevents any strong oupling between the editor and the translator. It also removes a lot of hidden hints that a translator might otherwise be able to utilize. The only hidden hint is the grouping of objets. Hene, grouping is limited to a very narrow funtion, delimiting ions, whih is disussed in Setion 4.1. That the translator has to start with so little information helps to ensure that the resulting graphial language is visually intuitive. 3

12 3. Generating Proedures From the outset, we must aept that the goal is to generate omputer proedures. It is not the purpose of the shemati system to fool the designer into thinking that she is not really writing a C++ proedure. Rather, the visual layout assists the designer in effiiently speifying the proedure orretly. Also, the shemati provides a single representation of the design, so that all later modifiations only need to be made in one plae. But, ultimately, what is speified must be a omplete and orret proedure. The role of the drawing translator is to provide a shemati world that allows the designer to be onise and yet preise, and to allow easily understood graphial drawings that an be fairly dense. These goals drive the overall arhiteture of the translation proess Frames and Evaluation The first onept that must be understood is that of a frame. Every retangle that is not grouped within an ion is alled a frame. Frames partition the page into different regions. Eah region is allowed to have its own region interpretation proedure. One reason for reating different regions with frames is preisely that the designer wants different regions to have different interpretation proedures. A seond use of frames is to group the objets of a region together into a single programming language "statement". A third use of frames is to ontrol the order of interpretation of objets. Frames partition the page into a hierarhial tree based on inlusion. To ensure this, there is a simple rule: given a frame and any other objet, the sides of the frame may not interset the sides of the bounding box of the objet. With this rule, the answer as to whether or not an objet is inside a given frame is always well-defined. For eah objet, drip an easily determine the minimal frame in whih it lies, and build a tree of objets with that frame as its parent. At the topmost level of the tree, is a root frame whih enloses the entire page. Some objets in a frame are text strings of the form "keyword: ontents". These text strings perform two different roles depending on the keyword. If the keyword is the name of a region interpretation proedure (e.g. "ell"), then the text string is simultaneously delaring the region proedure to be used for evaluating the ontents of its minimally enlosing frame, and the text string is passing arguments to that region proedure. There are two domain-independent region proedures: The "omment" proedure is the simplest. Everything inside the frame is treated as a omment; there is no C++ output generated. Its ontents are not evaluated. The "sub" proedure is the default for the root frame. Its purpose is to ensure that we properly iterate through and evaluate all its hildren, whih may only be text proedures and sub-frames. They are evaluated in the 2D order desribed in Setion 3.2. If, on the other hand, the keyword is the name of a text interpretation proedure (e.g. "Inputs", "Layout"), then the "ontents" are being passed to the speified text proedure for translation into generated ode. There are three domain independent text proedures. The text proedure "ode" passes its "ontents" straight through to the final C++ program. As a short-ut, text beginning with a olon is equivalent to text beginning with a "ode" keyword. 4

13 The text proedure "inlude" takes a omma separated list of file names. These shemati files are read and translated into C++ ode in order by drip. For 2D ordering purposes (see Setion 3.2), the ode is generated as if the shemati files fit in a frame at the same position and size as the text string that ontains the "inlude" keyword. The text proedure "omm" generates C++ omments that ontain its text arguments. Text proedures, ions, and sub-frames are diretly evaluated and generate ode. These are alled evaluation objets. All other objets in a frame are analyzed only in order to attah parameters and properties on the evaluation objets before their evaluation D Ordering Sine our graphial representation is really a poorly disguised C++ program, the order in whih we generate lines of the program is very important. This setion how we order all the objets within a frame for evaluation. In standard programming languages, the program itself is usually speified as ASCII text. Sine these text files are one-dimensional, the order of evaluation is easy: from the beginning to the end of the file. In a graphial language, the user has more degrees of freedom in plaing the language onstruts. Thus it is less obvious in what order to evaluate the onstruts. The first temptation is to sort by the upper-left orners of the bounding boxes of the objets, using the Y-oordinate as the most signifiant key and the X-oordinate as the least signifiant key. This is not entirely satisfatory. It is not as robust as we would like. Nor does it always order objets in the order we d like. R1 R2 R6 R5 R3 R4 R7 R8 R9 R10 R11 R12 R13 R14 Figure 2: 2D ordering of objets We needed to ome up with a better 2D ordering. Our resulting ordering system is easy to explain, robust and losely follows our intuitive reading order. This ordering works very well 5

14 for non-overlapping retangles. When sorting evaluation objets, we use the bounding boxes of the graphial element. An example showing the ordering we use is shown in Figure 2. At the ore of this ordering are these three rules: Case 1 When two retangles an be be separated by a vertial line and their projetions onto that line interset, we order them left to right. Example: in Figure 2, R1 preedes R5. Case 2 When two retangles an be be separated by a horizontal line and their projetions onto that line interset, we order them top to bottom. Example: in Figure 2, R8 preedes R12. Case 3 When one retangle is ompletely above and to the left of the other retangle, we order them left to right (or top to bottom, sine that is equivalent). Example: in Figure 2, R4 preedes R13. But, what about R2 vs R3? These are onsidered inomparable and so we leave them unordered for now. The final ordering is found by the following proedure: repeat until done: if only one retangle has no retangles that preede it then shedule that retangle else of all the retangles that have no retangles that preede them, shedule the one that has the highest upper-left orner Figure 3: Inomparable Retangles If we are in the else lause, then the retangles that have no retangles that preede them must be strethed out diagonally as shown in Figure 3. In this ase, the algorithm piks the uppermost one - whih is the same as the rightmost one. We an see why we didn t add a fourth ordering rule to deide on the inomparable retangles by looking arefully at Figure 2. Assume that we had said Case 4 When one retangle is ompletely above and to the right of the other retangle, we order them from top to bottom. Example: in Figure 2, R2 preedes R3. 6

15 Looking at Figure 2, the rules would now say that retangle R6 before retangle R4 - yielding a irular order given the previous rules. Or, similarly, assume we had instead hosen the rule Case 4 When one retangle is ompletely above and to the right of the other retangle, we order them from left to right. Example: in Figure 2, R3 preedes R6. Looking at Figure 2, the rules would now say that retangle R11 before retangle R4 - yielding a irular order given the previous rules. So we annot add a fourth rule to give us a total ordering without leading to a irular ordering. 4. Drawing Interpretation There is nothing in this evaluation proedure that is speifi to the appliation of shemati apture. It an be used as the basis for graphial programming environments in a number of areas. It is the details of the region and text proedures that define the domain. With a different set of region and text proedures, this graphial programming environment ould be retargeted for other uses. Sine this paper is mainly onerned with the domain of shemati apture, we now examine some of our domain-speifi interpretation proedures. Some interpretation proedures work on a string of text of the form "key: text", as mnetions previously. Here, the key defines how the text is to interpreted for ode generation. The domainspeifi text proedures "inputs", "outputs", "publis", "internals" are all used to delare the wires of a ell. The proedures "layout" and "model" generate ode to annotate the netlist for later CAD system funtions; "layout" speifies what method should be used to generate layout of a ell, and "model" speifies how a ell should be modeled by the simulator. These funtions were used frequently enough to warrant a text proedure, rather than foring the designer to write out the C++ equivalents. The more interesting interpretation proedures work on the ontents of regions. We settled on a simple olletion of region proedures: "basi", "blok", "ell", "plain", and "ion". We have mentioned that region proedures an be expliitly delared. When there is no label with a speifi delaration, a frame s region proedure is inherited from that of its parent frame. The "basi" proedure does our basi shemati evaluation with no extras. It first analyzes all non-evaluation objets in the region: wires, onnetors, wire labels, ion parameters. It binds wire names to wires and proedure arguments to ions. It propagates wire names along omplex wires and attahes them to ion onnetors. Any unlabeled hildren frames inherit a "blok" label. Finally, all hildren that are evaluation objets are evaluated in the 2D order desribed in Setion 3.2. The "blok" proedure is just like the "basi" proedure, exept that the ode it generates is turned into a single C++ "statement" by enlosing it all with {}. The "ell" proedure is used at the top level of a netlist generation proedure definition. It first auses the generation of a C++ proedure preamble, then it behaves like the "basi" proedure, and finally it generates a proedure postamble. 7

16 The "plain" proedure is just like the "ell" proedure, exept that it auses a less speialized proedure preamble and postamble to be generated. The "ion" proedures generates a C++ forward delaration for a the netlist generation proedure whih is produed by a "ell" proedure Ions An ion is a grouping of objets whih defines the interfae to a ell in the netlist. Ions are used in two irumstanes. In "ell" regions, an ion represents an instane of a subell, bound to wires in the urrent ell at its onnetors. In "ion" regions, the idential graphial objet generates a delaration for the netlist proedure defined by a "ell". Following the program analogy, "ion" regions are often olleted in a drawing whih is the graphial equivalent of a C++ ".h" file, defining the proedural interfaes to a olletion of ell generators. A well-formed ion should onsist of n irles, n+1 piees of text, and any number of other non-irle, non-text objets. The irles are ions onnetors, to whih wires an be attahed. Eah onnetor must be labeled by the name of an external wire of the ell represented by the ion. The text binding proedure desribed in Setion 5.1 will be used to bind n of the text objets to the n irles. The remaining unbound text is taken to be the name of the ion. Some onforming ions are shown in Figure 4. sslave i o o_ ICON:sSlave() i so Reg si ICON:Reg(int size=1,har* tl="yd") Figure 4: "onforming" ions o s d12l3 d ICON:d12L3() Unaltered, this sheme imposes some limitations on ions that many users find unaeptable. There are some triks to get around them that don t onform to our guiding philosophies: Some ommon ions are well known, as are the meaning of their onnetors, e.g. the npn transistors in Figure 5. Requiring a name would ause lutter that is annoying to many designers. The solution in this ase is to set the olor of the text to "white", thus making it invisible. Unless the ion is very standard, this pratie is strongly disouraged. Sometimes we need irles that are not onnetors in our ion, e.g. the ISr in Figure 5. These irles must not be bound to text. In this ase, the extra irles should be hidden within a sub-group of the ion s group. The ion interpreter and text binder do not searh within subgroups of the ion. Sometimes we need text that is not a onnetor or ion label in our ion, e.g. the "+" and "-" in the VSr in Figure 5. Just as with irles, these are hidden from the interpreter in sub-groups of the ion s group. By the time that the "basi" region proedure attempts to evaluate an ion, drip will already have bound wirenames to the wires in the region and propagated them all the way to the ion onnetors, as desribed in Setion 5. So for eah ion onnetor, we know the name in the 8

17 bnpn e Npn ICON: Npn b e in ISr ICON: ISr vp VSr + - vm ICON: VSr Figure 5: Sample "non-onforming" ions urrent ell of the wire that is attahed to it. From the text binding of the ion ontents, we know the name of the wire that the onnetor represents in the ell generated by the proedure that the ion invokes. Finally, sine we bind these two wires by name, we an generate the ode shown in Figure 1, lines 16, 19, 21, 23 and 25. Note that the ode generated by a single ion is always enlosed with {} and is thus a single C++ statement. 1 Cell* sslave (); 2 Cell* Reg (int size=1,har* tl="yd"); 3 Cell* d12l3 (); Figure 6: Code Generated by "Ion" Region Proedure for Figure 4 In Figures 4 and 5 we see the use of the "ion" region proedure. This region proedure has two tasks. First, it generates a forward referene to the orresponding netlist generation proedure. The ode emitted is a delaration of the proedure with its arguments, inluding any default arguments. This ode will typially appear in a ".h" file. The ode generated by this region proedure for Figure 4 is shown in Figure 6. Seond, The "ion" frame proedure analyzes any ions ontained in it to make sure that they are well-formed and that the name of the ion is the same as the netlist proedure that is named in the "Ion:" delaration. If the designer wants to opy and paste an ion for use in the urrent design, an "ion" frame proedure that has already suessfully passed through drip is a very safe plae from whih to opy the ion. 5. Analysis of Non-Evaluation Objets During the exeution of the "basi" region proedure, the first task is to analyze the nonevaluation objets. These are: lines, whih represent wires; irles, whih represent wire onnetors; and text whih is not of the "keyword: ontents" form. The role of a partiular text objet is easily determined from its syntax. Text enlosed in parenthesis represents an argument to be passed to an ion. Text beginning with a "." or a "[" is used for wire subsripting, whih will be disussed in Setion 5.3. Text that is a normal identifier, or a normal identifier with subsripting, is a wire name Binding Text to Objets The main work in analyzing non-evaluation objets is determining to what objets the nonevaluation text should be attahed. Binding text to objets is neessary for several different tasks. For the analysis phase of "basi" we need to be able to bind labels to wires and bind arguments to ions. For ion analysis we need to bind labels to ion onnetors. Given three different uses, we hoose to use the same algorithm for all three. This makes it easier for the designer to understand the translator behavior. 9

18 We do not allow the drawings to have hidden information, so drip must base its binding deisions only on the positions of the text in relation to the other objets. The algorithm is straightforward. The binding subroutine will be given a olletion of text and a olletion of relevant objets to bind the text to. For eah piee of text it finds the losest relevant objet. If no other text has the same losest objet, then the objet and the text are bound. When multiple piees of text have the same losest objet, this is usually reported as an error. (We allow one exeption: in the ase of a wire that has the idential label repeated multiple times, we don t flag an error.) The distane from text to an objet is omputed as follows: replae the text with the line that results from underlining the text and replae the objet with a retangular bounding box, then find the manhattan distane from the line to the box. One drawbak of suh a simple method is that it doesn t bind text to seond losest objets in ases that are intuitive to humans. More ompliated algorithms were experimented with. They led to suffiient unpreditability at the user level, that they aused more harm than good. The great advantage of our method is that a user looking at the printed opy an easily understand exatly what text is bound to what objet Wires Inputs: L2(2) l; L1() a,b,d; a b Npn e l[0] b Npn Layout: "Leaf" e Publis: signal Gnd,Vee1,Vs,Vr1,Vr2; omment: T and L juntions Wires that meet at T and L juntions are onneted together. Vr1 Npn b e b b Npn Vr1 Npn e l[1] b Npn e b e Gnd d b Npn e Vr2 b Npn in ISr r0 Res r1 e Outputs: L1() o; a EF Vr1 Npn b e Gnd ell: smux2() b o ell: fragment() omment: onnetors irpipe rdkill rapipe alukill ammwpipe memwbkill Connetors an also be used outside of ions. Wires that have + juntions are not onsidered onneted. With a onnetor at the + juntion, the wires are onsidered onneted. si daess odelaymem si so aml memk ral aluk irl rdk rrs rrs rrsi rrsi rrt rrt rrti rrti Bypass rrw rrw rrwi rrwi byps rasrselw wei wei bypt ratarselw we we wlk wlk si mwl wbk aml memk ral aluk irl rdk so so Figure 7: Juntions and Connetors When binding labels to wires, the binding algorithm attahes eah label to a single line or irle. However, the translator needs to understand that the label applies to the entire ondution path. A ondution path onsist of many lines and irles that are onneted together. The rules we use for onnetivity analysis are straightforward (see Figure 7). 1. Two wires that meet at a T-juntion or an L-juntion are onneted at that juntion. 2. Two wires that meet at a "+"-juntion are not-onneted. 3. If a wire intersets a irular onnetor, they are onneted. 4. Transitivity: if A is onneted to B and B is onneted to C, A is onneted to C. 10

19 5.3. Wire Subsripting omment: subwires This ell shows how wires an be broken down into subwires. zz[a,b] means the b bits of the wire zz that start with bit a. Inputs: bits(5) s; signal inv; Publis: signal Gnd,Vee1,Vs,Vr1,Vr2; Internals: bits(4) xx, yy; bits(2) zz; bits(5) out, out_; Outputs: bits(32) sa; s inv sa out deomp inv out_ out out_ [0,2] [0,2] [2,2] [2,2] s_ dl24 s d s_ dl24 s d xx yy zz bshls d0 d1 sel d2 sa Model: "bshde" [4] [4] b b a a Fuse Fuse [0] [1] ell: bshde Figure 8: Wire Subsripting In our CAD system, a wire may be an array or ompliated struture of sub-wires. In a shemati we may want to tear a wire into sub-wires. An example is shown in Figure 8. Now we will have a set of onneted lines, some of whih represent a olletion of nets, some of whih represent a subset of them. Whih line represents what nets? For a onneted set of ondutors that use subsripting, some basi rules must hold: The ondutors must form a tree. There may be exatly one non-subsript label on any of the ondutors. Eah ondutor is allowed at most one label, whether it is a subsript label or a non-subsript label. Given these rules, we an hoose the non-subsript labeled ondutor as the root of the tree. The label on any ondutor is the onatenation of all the labels along the path from the root of the tree to the ondutor, inlusive. This algorithm is intuitive, robust and works for multiple levels of subsripting. 6. Error Reporting The main objetion that designers have after the above system is explained to them, is that the deoupling of editor and interpreter makes it harder to deal with shemati errors found by the interpreter. Sine our deoupling is in part modeled on the separation of text editor and ompiler that programmers are very used to, we similarly mimi the error reporting mehanisms of emas. When programming with emas, the ompiler reports errors in suh a format that the programmer an use emas to single-step through the lines in the ode that have errors. Similarly, whenever drip enounters an error, it writes an entry into an error file. This entry ontains an error message, a soure shemati file name, and desriptions of polygons with whih to highlight the error region of the shemati. 11

20 Sine out editor did not have the ability to handle error files, we had to ustomize it. We added ommands to load an error file, and single step through the errors. The editor pulls up the shemati with the error, overlays the highlighting polygons, and pops up a window with the error message. The designer an fix the error and then step to the next one. 7. Experienes This system was suessfully used at our laboratory for a period of four years, enompassing two miroproessor projets, BIPS0 [4] and BIPS1. Eah design used over one hundred shematially speified netlist generation proedures. Another bonus effet of the separation between the shematis and the generated C++ ode that is provided by the interpreter was that the frequent hanges to the CAD system libraries and their interfaes usually only required modifiations to drip s interpretation proedures, rather than to every shemati. Aknowledgements drip desended from moog. moog was a drawing interpreter written by Mike Nielsen and Jeremy Dion for use with the artemis graphis editor. Under the guidane of Jeremy Dion, Kamal Chaudhary wrote a preliminary drawing interpreter moo, that would be more graphis editor independent. Ramsey Haddad extended moo. Ramsey Haddad and Louis Monier rewrote it, reating drip. drip was further improved by inorporating ideas from a number of users: Mary Jo Doherty, Alan Eustae, Norm Jouppi, Jim Keller, Suresh Menon, Silvio Turrini. Jeremy Dion and Louis Monier made numerous helpful suggestions on the paper. Referenes [1] R. Barth, B. Serlet, P. Sindhu. Parameterized Shematis. In 25th Design Automation Conferene, pages Sydney, June, [2] R. Barth, L. Monier, B. Serlet. Pathwork: Layout From Shemati Annotations. In 25th Design Automation Conferene, pages Sydney, June, [3] C. Ebeling, Z. Wu. WireLisp: Combining Graphis and Proedures in a Ciruit Speifiation Language. In Proeedings of the ICCAD, pages IEEE, [4] N.P. Jouppi, P. Boyle, J. Dion, M.J. Doherty, A. Eustae, R.W. Haddad, R. Mayo, S. Menon, L.M. Monier, D. Stark, S. Turrini, J.L. Yang, W.R. Hamburgen, J.S. Fith, R. Kao. A 300-MHz 115-W 32-b Bipolar ECL Miroproessor. IEEE Journal of Solid-State Ciruits 28(11), November, [5] R. Mayo. Moha hip: A system for the graphial design of VLSI module generators. In Proeedings of the ICCAD, pages IEEE, [6] L. MMurhie, C. Ebeling. WireC Tutorial and Referene Manual. Tehnial Report , University of Washington, Department of Computer Siene and Engineering, September, [7] L. Monier. Layout Generation Through Parameterized Shematis. In 7th Australian Miroeletronis Conferene, pages Sydney, May, [8] L. Monier, J. Dion. Reursive Layout Generation. WRL Researh Report (95/2),

21 [9] J. Vlissides, M. Linton. Unidraw: A Framework for Building Domain-Speifi Graphial Editors. ACM Transations on Information Systems 8(3): , July, [10] Z. Wu, C. Ebeling. Drawing Wirelisp. Tehnial Report , University of Washington, Department of Computer Siene and Engineering, Deember,

22 14

23 WRL Researh Reports Titan System Manual. The USENET Cookbook: an Experiment in Mihael J. K. Nielsen. Eletroni Publiation. WRL Researh Report 86/1, September Brian K. Reid. WRL Researh Report 87/7, Deember Global Register Alloation at Link Time. David W. Wall. MultiTitan: Four Arhiteture Papers. WRL Researh Report 86/3, Otober Norman P. Jouppi, Jeremy Dion, David Boggs, Mihael J. K. Nielsen. Optimal Finned Heat Sinks. WRL Researh Report 87/8, April William R. Hamburgen. WRL Researh Report 86/4, Otober Fast Printed Ciruit Board Routing. Jeremy Dion. The Mahler Experiene: Using an Intermediate WRL Researh Report 88/1, Marh Language as the Mahine Desription. David W. Wall and Mihael L. Powell. Compating Garbage Colletion with Ambiguous WRL Researh Report 87/1, August Roots. Joel F. Bartlett. The Paket Filter: An Effiient Mehanism for WRL Researh Report 88/2, February User-level Network Code. Jeffrey C. Mogul, Rihard F. Rashid, Mihael The Experimental Literature of The Internet: An J. Aetta. Annotated Bibliography. WRL Researh Report 87/2, November Jeffrey C. Mogul. WRL Researh Report 88/3, August Fragmentation Considered Harmful. Christopher A. Kent, Jeffrey C. Mogul. Measured Capaity of an Ethernet: Myths and WRL Researh Report 87/3, Deember Reality. David R. Boggs, Jeffrey C. Mogul, Christopher Cahe Coherene in Distributed Systems. A. Kent. Christopher A. Kent. WRL Researh Report 88/4, September WRL Researh Report 87/4, Deember Visa Protools for Controlling Inter-Organizational Register Windows vs. Register Alloation. Datagram Flow: Extended Desription. David W. Wall. Deborah Estrin, Jeffrey C. Mogul, Gene Tsudik, WRL Researh Report 87/5, Deember Kamaljit Anand. WRL Researh Report 88/5, Deember Editing Graphial Objets Using Proedural Representations. SCHEME->C A Portable Sheme-to-C Compiler. Paul J. Asente. Joel F. Bartlett. WRL Researh Report 87/6, November WRL Researh Report 89/1, January

24 Optimal Group Distribution in Carry-Skip Ad- The Distribution of Instrution-Level and Mahine ders. Parallelism and Its Effet on Performane. Silvio Turrini. Norman P. Jouppi. WRL Researh Report 89/2, February WRL Researh Report 89/13, July Preise Roboti Paste Dot Dispensing. Long Address Traes from RISC Mahines: William R. Hamburgen. Generation and Analysis. WRL Researh Report 89/3, February Anita Borg, R.E.Kessler, Georgia Lazana, and David W. Wall. Simple and Flexible Datagram Aess Controls for WRL Researh Report 89/14, September Unix-based Gateways. Jeffrey C. Mogul. Link-Time Code Modifiation. WRL Researh Report 89/4, Marh David W. Wall. WRL Researh Report 89/17, September Spritely NFS: Implementation and Performane of Cahe-Consisteny Protools. Noise Issues in the ECL Ciruit Family. V. Srinivasan and Jeffrey C. Mogul. Jeffrey Y.F. Tang and J. Leon Yang. WRL Researh Report 89/5, May WRL Researh Report 90/1, January Available Instrution-Level Parallelism for Super- Effiient Generation of Test Patterns Using salar and Superpipelined Mahines. Boolean Satisfiablilty. Norman P. Jouppi and David W. Wall. Tray Larrabee. WRL Researh Report 89/7, July WRL Researh Report 90/2, February A Unified Vetor/Salar Floating-Point Arhite- Two Papers on Test Pattern Generation. ture. Tray Larrabee. Norman P. Jouppi, Jonathan Bertoni, and David WRL Researh Report 90/3, Marh W. Wall. WRL Researh Report 89/8, July Virtual Memory vs. The File System. Mihael N. Nelson. Arhitetural and Organizational Tradeoffs in the WRL Researh Report 90/4, Marh Design of the MultiTitan CPU. Norman P. Jouppi. Effiient Use of Workstations for Passive Monitor- WRL Researh Report 89/9, July ing of Loal Area Networks. Jeffrey C. Mogul. Integration and Pakaging Plateaus of Proessor WRL Researh Report 90/5, July Performane. Norman P. Jouppi. A One-Dimensional Thermal Model for the VAX WRL Researh Report 89/10, July Multi Chip Units. John S. Fith. A 20-MIPS Sustained 32-bit CMOS Miroproes- WRL Researh Report 90/6, July sor with High Ratio of Sustained to Peak Performane DECWRL/Livermore Magi Release. Norman P. Jouppi and Jeffrey Y. F. Tang. Robert N. Mayo, Mihael H. Arnold, Walter S. Sott, WRL Researh Report 89/11, July Don Stark, Gordon T. Hamahi. WRL Researh Report 90/7, September

25 Pool Boiling Enhanement Tehniques for Water at Interleaved Fin Thermal Connetors for Multihip Low Pressure. Modules. Wade R. MGillis, John S. Fith, William William R. Hamburgen. R. Hamburgen, Van P. Carey. WRL Researh Report 91/9, August WRL Researh Report 90/9, Deember Experiene with a Software-defined Mahine Ar- Writing Fast X Servers for Dumb Color Frame Buf- hiteture. fers. David W. Wall. Joel MCormak. WRL Researh Report 91/10, August WRL Researh Report 91/1, February Network Loality at the Sale of Proesses. A Simulation Based Study of TLB Performane. Jeffrey C. Mogul. J. Bradley Chen, Anita Borg, Norman P. Jouppi. WRL Researh Report 91/11, November WRL Researh Report 91/2, November Cahe Write Poliies and Performane. Analysis of Power Supply Networks in VLSI Cir- Norman P. Jouppi. uits. WRL Researh Report 91/12, Deember Don Stark. WRL Researh Report 91/3, April Pakaging a 150 W Bipolar ECL Miroproessor. William R. Hamburgen, John S. Fith. TurboChannel T1 Adapter. WRL Researh Report 92/1, Marh David Boggs. WRL Researh Report 91/4, April Observing TCP Dynamis in Real Networks. Jeffrey C. Mogul. Proedure Merging with Instrution Cahes. WRL Researh Report 92/2, April Sott MFarling. WRL Researh Report 91/5, Marh Systems for Late Code Modifiation. David W. Wall. Don t Fidget with Widgets, Draw!. WRL Researh Report 92/3, May Joel Bartlett. WRL Researh Report 91/6, May Pieewise Linear Models for Swith-Level Simulation. Pool Boiling on Small Heat Dissipating Elements in Russell Kao. Water at Subatmospheri Pressure. WRL Researh Report 92/5, September Wade R. MGillis, John S. Fith, William R. Hamburgen, Van P. Carey. A Pratial System for Intermodule Code Optimiza- WRL Researh Report 91/7, June tion at Link-Time. Amitabh Srivastava and David W. Wall. Inremental, Generational Mostly-Copying Gar- WRL Researh Report 92/6, Deember bage Colletion in Unooperative Environments. A Smart Frame Buffer. G. May Yip. Joel MCormak & Bob MNamara. WRL Researh Report 91/8, June WRL Researh Report 93/1, January Reovery in Spritely NFS. Jeffrey C. Mogul. WRL Researh Report 93/2, June

26 Tradeoffs in Two-Level On-Chip Cahing. Complexity/Performane Tradeoffs with Non- Norman P. Jouppi & Steven J.E. Wilton. Bloking Loads. WRL Researh Report 93/3, Otober Keith I. Farkas, Norman P. Jouppi. WRL Researh Report 94/3, Marh Unreahable Proedures in Objet-oriented Programing. A Better Update Poliy. Amitabh Srivastava. Jeffrey C. Mogul. WRL Researh Report 93/4, August WRL Researh Report 94/4, April An Enhaned Aess and Cyle Time Model for Boolean Mathing for Full-Custom ECL Gates. On-Chip Cahes. Robert N. Mayo, Herve Touati. Steven J.E. Wilton and Norman P. Jouppi. WRL Researh Report 94/5, April WRL Researh Report 93/5, July Software Methods for System Address Traing: Limits of Instrution-Level Parallelism. Implementation and Validation. David W. Wall. J. Bradley Chen, David W. Wall, and Anita Borg. WRL Researh Report 93/6, November WRL Researh Report 94/6, September Fluoroelastomer Pressure Pad Design for Performane Impliations of Multiple Pointer Miroeletroni Appliations. Sizes. Alberto Makino, William R. Hamburgen, John Jeffrey C. Mogul, Joel F. Bartlett, Robert N. Mayo, S. Fith. and Amitabh Srivastava. WRL Researh Report 93/7, November WRL Researh Report 94/7, Deember A 300MHz 115W 32b Bipolar ECL Miroproes- How Useful Are Non-bloking Loads, Stream Bufsor. fers, and Speulative Exeution in Multiple Issue Norman P. Jouppi, Patrik Boyle, Jeremy Dion, Mary Proessors?. Jo Doherty, Alan Eustae, Ramsey Haddad, Keith I. Farkas, Norman P. Jouppi, and Paul Chow. Robert Mayo, Suresh Menon, Louis Monier, Don WRL Researh Report 94/8, Deember Stark, Silvio Turrini, Leon Yang, John Fith, William Hamburgen, Russell Kao, and Rihard Swan. Reursive Layout Generation. WRL Researh Report 93/8, Deember Louis M. Monier, Jeremy Dion. WRL Researh Report 95/2, Marh Link-Time Optimization of Address Calulation on a 64-bit Arhiteture. Contour: A Tile-based Gridless Router. Amitabh Srivastava, David W. Wall. Jeremy Dion, Louis M. Monier. WRL Researh Report 94/1, February WRL Researh Report 95/3, Marh ATOM: A System for Building Customized Program Analysis Tools. Amitabh Srivastava, Alan Eustae. WRL Researh Report 94/2, Marh The Case for Persistent-Connetion HTTP. Jeffrey C. Mogul. WRL Researh Report 95/4, May Network Behavior of a Busy Web Server and its Clients. Jeffrey C. Mogul. WRL Researh Report 95/5, June

27 WRL Tehnial Notes TCP/IP PrintServer: Print Server Protool. Boiling Binary Mixtures at Subatmospheri Pres- Brian K. Reid and Christopher A. Kent. sures WRL Tehnial Note TN-4, September Wade R. MGillis, John S. Fith, William R. Hamburgen, Van P. Carey. TCP/IP PrintServer: Server Arhiteture and Im- WRL Tehnial Note TN-23, January plementation. Christopher A. Kent. A Comparison of Aousti and Infrared Inspetion WRL Tehnial Note TN-7, November Tehniques for Die Attah John S. Fith. Smart Code, Stupid Memory: A Fast X Server for a WRL Tehnial Note TN-24, January Dumb Color Frame Buffer. Joel MCormak. TurboChannel Versate Adapter WRL Tehnial Note TN-9, September David Boggs. WRL Tehnial Note TN-26, January Why Aren t Operating Systems Getting Faster As Fast As Hardware? A Reovery Protool For Spritely NFS John Ousterhout. Jeffrey C. Mogul. WRL Tehnial Note TN-11, Otober WRL Tehnial Note TN-27, April Mostly-Copying Garbage Colletion Piks Up Eletrial Evaluation Of The BIPS-0 Pakage Generations and C++. Patrik D. Boyle. Joel F. Bartlett. WRL Tehnial Note TN-29, July WRL Tehnial Note TN-12, Otober Transparent Controls for Interative Graphis The Effet of Context Swithes on Cahe Perfor- Joel F. Bartlett. mane. WRL Tehnial Note TN-30, July Jeffrey C. Mogul and Anita Borg. WRL Tehnial Note TN-16, Deember Design Tools for BIPS-0 Jeremy Dion & Louis Monier. MTOOL: A Method For Deteting Memory Bot- WRL Tehnial Note TN-32, Deember tleneks. Aaron Goldberg and John Hennessy. Link-Time Optimization of Address Calulation on WRL Tehnial Note TN-17, Deember a 64-Bit Arhiteture Amitabh Srivastava and David W. Wall. Prediting Program Behavior Using Real or Es- WRL Tehnial Note TN-35, June timated Profiles. David W. Wall. Combining Branh Preditors WRL Tehnial Note TN-18, Deember Sott MFarling. WRL Tehnial Note TN-36, June Cahe Replaement with Dynami Exlusion Sott MFarling. Boolean Mathing for Full-Custom ECL Gates WRL Tehnial Note TN-22, November Robert N. Mayo and Herve Touati. WRL Tehnial Note TN-37, June

28 Ramonamap - An Example of Graphial Groupware Joel F. Bartlett. WRL Tehnial Note TN-43, Deember Ciruit and Proess Diretions for Low-Voltage Swing Submiron BiCMOS Norman P. Jouppi, Suresh Menon, and Stefanos Sidiropoulos. WRL Tehnial Note TN-45, Marh Experiene with a Wireless World Wide Web Client Joel F. Bartlett. WRL Tehnial Note TN-46, Marh I/O Component Charaterization for I/O Cahe Designs Kathy J. Rihardson. WRL Tehnial Note TN-47, April Attribute ahes Kathy J. Rihardson, Mihael J. Flynn. WRL Tehnial Note TN-48, April Operating Systems Support for Busy Internet Servers Jeffrey C. Mogul. WRL Tehnial Note TN-49, May

A Holistic Method for Selecting Web Services in Design of Composite Applications

A Holistic Method for Selecting Web Services in Design of Composite Applications A Holisti Method for Seleting Web Servies in Design of Composite Appliations Mārtiņš Bonders, Jānis Grabis Institute of Information Tehnology, Riga Tehnial University, 1 Kalu Street, Riga, LV 1658, Latvia,

More information

Open and Extensible Business Process Simulator

Open and Extensible Business Process Simulator UNIVERSITY OF TARTU FACULTY OF MATHEMATICS AND COMPUTER SCIENCE Institute of Computer Siene Karl Blum Open and Extensible Business Proess Simulator Master Thesis (30 EAP) Supervisors: Luiano Garía-Bañuelos,

More information

Hierarchical Clustering and Sampling Techniques for Network Monitoring

Hierarchical Clustering and Sampling Techniques for Network Monitoring S. Sindhuja Hierarhial Clustering and Sampling Tehniques for etwork Monitoring S. Sindhuja ME ABSTRACT: etwork monitoring appliations are used to monitor network traffi flows. Clustering tehniques are

More information

Unit 12: Installing, Configuring and Administering Microsoft Server

Unit 12: Installing, Configuring and Administering Microsoft Server Unit 12: Installing, Configuring and Administering Mirosoft Server Learning Outomes A andidate following a programme of learning leading to this unit will be able to: Selet a suitable NOS to install for

More information

' R ATIONAL. :::~i:. :'.:::::: RETENTION ':: Compliance with the way you work PRODUCT BRIEF

' R ATIONAL. :::~i:. :'.:::::: RETENTION ':: Compliance with the way you work PRODUCT BRIEF ' R :::i:. ATIONAL :'.:::::: RETENTION ':: Compliane with the way you work, PRODUCT BRIEF In-plae Management of Unstrutured Data The explosion of unstrutured data ombined with new laws and regulations

More information

Intelligent Measurement Processes in 3D Optical Metrology: Producing More Accurate Point Clouds

Intelligent Measurement Processes in 3D Optical Metrology: Producing More Accurate Point Clouds Intelligent Measurement Proesses in 3D Optial Metrology: Produing More Aurate Point Clouds Charles Mony, Ph.D. 1 President Creaform in. [email protected] Daniel Brown, Eng. 1 Produt Manager Creaform in.

More information

Sebastián Bravo López

Sebastián Bravo López Transfinite Turing mahines Sebastián Bravo López 1 Introdution With the rise of omputers with high omputational power the idea of developing more powerful models of omputation has appeared. Suppose that

More information

Channel Assignment Strategies for Cellular Phone Systems

Channel Assignment Strategies for Cellular Phone Systems Channel Assignment Strategies for Cellular Phone Systems Wei Liu Yiping Han Hang Yu Zhejiang University Hangzhou, P. R. China Contat: [email protected] 000 Mathematial Contest in Modeling (MCM) Meritorious

More information

Parametric model of IP-networks in the form of colored Petri net

Parametric model of IP-networks in the form of colored Petri net Parametri model of IP-networks in the form of olored Petri net Shmeleva T.R. Abstrat A parametri model of IP-networks in the form of olored Petri net was developed; it onsists of a fixed number of Petri

More information

OpenScape 4000 CSTA V7 Connectivity Adapter - CSTA III, Part 2, Version 4.1. Developer s Guide A31003-G9310-I200-1-76D1

OpenScape 4000 CSTA V7 Connectivity Adapter - CSTA III, Part 2, Version 4.1. Developer s Guide A31003-G9310-I200-1-76D1 OpenSape 4000 CSTA V7 Connetivity Adapter - CSTA III, Part 2, Version 4.1 Developer s Guide A31003-G9310-I200-1-76 Our Quality and Environmental Management Systems are implemented aording to the requirements

More information

Table of Contents. Appendix II Application Checklist. Export Finance Program Working Capital Financing...7

Table of Contents. Appendix II Application Checklist. Export Finance Program Working Capital Financing...7 Export Finane Program Guidelines Table of Contents Setion I General...........................................................1 A. Introdution............................................................1

More information

Performance Analysis of IEEE 802.11 in Multi-hop Wireless Networks

Performance Analysis of IEEE 802.11 in Multi-hop Wireless Networks Performane Analysis of IEEE 80.11 in Multi-hop Wireless Networks Lan Tien Nguyen 1, Razvan Beuran,1, Yoihi Shinoda 1, 1 Japan Advaned Institute of Siene and Tehnology, 1-1 Asahidai, Nomi, Ishikawa, 93-19

More information

Behavior Analysis-Based Learning Framework for Host Level Intrusion Detection

Behavior Analysis-Based Learning Framework for Host Level Intrusion Detection Behavior Analysis-Based Learning Framework for Host Level Intrusion Detetion Haiyan Qiao, Jianfeng Peng, Chuan Feng, Jerzy W. Rozenblit Eletrial and Computer Engineering Department University of Arizona

More information

Chapter 1 Microeconomics of Consumer Theory

Chapter 1 Microeconomics of Consumer Theory Chapter 1 Miroeonomis of Consumer Theory The two broad ategories of deision-makers in an eonomy are onsumers and firms. Eah individual in eah of these groups makes its deisions in order to ahieve some

More information

A Keyword Filters Method for Spam via Maximum Independent Sets

A Keyword Filters Method for Spam via Maximum Independent Sets Vol. 7, No. 3, May, 213 A Keyword Filters Method for Spam via Maximum Independent Sets HaiLong Wang 1, FanJun Meng 1, HaiPeng Jia 2, JinHong Cheng 3 and Jiong Xie 3 1 Inner Mongolia Normal University 2

More information

Computer Networks Framing

Computer Networks Framing Computer Networks Framing Saad Mneimneh Computer Siene Hunter College of CUNY New York Introdution Who framed Roger rabbit? A detetive, a woman, and a rabbit in a network of trouble We will skip the physial

More information

SOFTWARE ENGINEERING I

SOFTWARE ENGINEERING I SOFTWARE ENGINEERING I CS 10 Catalog Desription PREREQUISITE: CS 21. Introdution to the systems development life yle, software development models, analysis and design tehniques and tools, and validation

More information

INCOME TAX WITHHOLDING GUIDE FOR EMPLOYERS

INCOME TAX WITHHOLDING GUIDE FOR EMPLOYERS Virginia Department of Taxation INCOME TAX WITHHOLDING GUIDE FOR EMPLOYERS www.tax.virginia.gov 2614086 Rev. 07/14 * Table of Contents Introdution... 1 Important... 1 Where to Get Assistane... 1 Online

More information

Deadline-based Escalation in Process-Aware Information Systems

Deadline-based Escalation in Process-Aware Information Systems Deadline-based Esalation in Proess-Aware Information Systems Wil M.P. van der Aalst 1,2, Mihael Rosemann 2, Marlon Dumas 2 1 Department of Tehnology Management Eindhoven University of Tehnology, The Netherlands

More information

WORKFLOW CONTROL-FLOW PATTERNS A Revised View

WORKFLOW CONTROL-FLOW PATTERNS A Revised View WORKFLOW CONTROL-FLOW PATTERNS A Revised View Nik Russell 1, Arthur H.M. ter Hofstede 1, 1 BPM Group, Queensland University of Tehnology GPO Box 2434, Brisbane QLD 4001, Australia {n.russell,a.terhofstede}@qut.edu.au

More information

From a strategic view to an engineering view in a digital enterprise

From a strategic view to an engineering view in a digital enterprise Digital Enterprise Design & Management 2013 February 11-12, 2013 Paris From a strategi view to an engineering view in a digital enterprise The ase of a multi-ountry Telo Hervé Paault Orange Abstrat In

More information

FOOD FOR THOUGHT Topical Insights from our Subject Matter Experts

FOOD FOR THOUGHT Topical Insights from our Subject Matter Experts FOOD FOR THOUGHT Topial Insights from our Sujet Matter Experts DEGREE OF DIFFERENCE TESTING: AN ALTERNATIVE TO TRADITIONAL APPROACHES The NFL White Paper Series Volume 14, June 2014 Overview Differene

More information

AT 6 OF 2012 GAMBLING DUTY ACT 2012

AT 6 OF 2012 GAMBLING DUTY ACT 2012 i e AT 6 OF 2012 GAMBLING DUTY ACT 2012 Gambling Duty At 2012 Index i e GAMBLING DUTY ACT 2012 Index Setion Page PART 1 INTRODUCTORY 5 1 Short title... 5 2 Commenement... 5 3 General interpretation...

More information

Electrician'sMathand BasicElectricalFormulas

Electrician'sMathand BasicElectricalFormulas Eletriian'sMathand BasiEletrialFormulas MikeHoltEnterprises,In. 1.888.NEC.CODE www.mikeholt.om Introdution Introdution This PDF is a free resoure from Mike Holt Enterprises, In. It s Unit 1 from the Eletrial

More information

Neural network-based Load Balancing and Reactive Power Control by Static VAR Compensator

Neural network-based Load Balancing and Reactive Power Control by Static VAR Compensator nternational Journal of Computer and Eletrial Engineering, Vol. 1, No. 1, April 2009 Neural network-based Load Balaning and Reative Power Control by Stati VAR Compensator smail K. Said and Marouf Pirouti

More information

Granular Problem Solving and Software Engineering

Granular Problem Solving and Software Engineering Granular Problem Solving and Software Engineering Haibin Zhu, Senior Member, IEEE Department of Computer Siene and Mathematis, Nipissing University, 100 College Drive, North Bay, Ontario, P1B 8L7, Canada

More information

Capacity at Unsignalized Two-Stage Priority Intersections

Capacity at Unsignalized Two-Stage Priority Intersections Capaity at Unsignalized Two-Stage Priority Intersetions by Werner Brilon and Ning Wu Abstrat The subjet of this paper is the apaity of minor-street traffi movements aross major divided four-lane roadways

More information

Software Ecosystems: From Software Product Management to Software Platform Management

Software Ecosystems: From Software Product Management to Software Platform Management Software Eosystems: From Software Produt Management to Software Platform Management Slinger Jansen, Stef Peeters, and Sjaak Brinkkemper Department of Information and Computing Sienes Utreht University,

More information

Programming Basics - FORTRAN 77 http://www.physics.nau.edu/~bowman/phy520/f77tutor/tutorial_77.html

Programming Basics - FORTRAN 77 http://www.physics.nau.edu/~bowman/phy520/f77tutor/tutorial_77.html CWCS Workshop May 2005 Programming Basis - FORTRAN 77 http://www.physis.nau.edu/~bowman/phy520/f77tutor/tutorial_77.html Program Organization A FORTRAN program is just a sequene of lines of plain text.

More information

i_~f e 1 then e 2 else e 3

i_~f e 1 then e 2 else e 3 A PROCEDURE MECHANISM FOR BACKTRACK PROGRAMMING* David R. HANSON + Department o Computer Siene, The University of Arizona Tuson, Arizona 85721 One of the diffiulties in using nondeterministi algorithms

More information

Board Building Recruiting and Developing Effective Board Members for Not-for-Profit Organizations

Board Building Recruiting and Developing Effective Board Members for Not-for-Profit Organizations Board Development Board Building Reruiting and Developing Effetive Board Members for Not-for-Profit Organizations Board Development Board Building Reruiting and Developing Effetive Board Members for Not-for-Profit

More information

Using Live Chat in your Call Centre

Using Live Chat in your Call Centre Using Live Chat in your Call Centre Otober Key Highlights Yesterday's all entres have beome today's ontat entres where agents deal with multiple queries from multiple hannels. Live Chat hat is one now

More information

INCOME TAX WITHHOLDING GUIDE FOR EMPLOYERS

INCOME TAX WITHHOLDING GUIDE FOR EMPLOYERS Virginia Department of Taxation INCOME TAX WITHHOLDING GUIDE FOR EMPLOYERS www.tax.virginia.gov 2614086 Rev. 01/16 Table of Contents Introdution... 1 Important... 1 Where to Get Assistane... 1 Online File

More information

An Enhanced Critical Path Method for Multiple Resource Constraints

An Enhanced Critical Path Method for Multiple Resource Constraints An Enhaned Critial Path Method for Multiple Resoure Constraints Chang-Pin Lin, Hung-Lin Tai, and Shih-Yan Hu Abstrat Traditional Critial Path Method onsiders only logial dependenies between related ativities

More information

Picture This: Molecular Maya Puts Life in Life Science Animations

Picture This: Molecular Maya Puts Life in Life Science Animations Piture This: Moleular Maya Puts Life in Life Siene Animations [ Data Visualization ] Based on the Autodesk platform, Digizyme plug-in proves aestheti and eduational effetiveness. BY KEVIN DAVIES In 2010,

More information

computer science Program Educational Objectives

computer science Program Educational Objectives omputer siene bahelor of siene minor ertifiates: managing information on the world wide web master of siene in omputer siene master of siene in software engineering advaned ertifiate programs: bioinformatis

More information

Findings and Recommendations

Findings and Recommendations Contrating Methods and Administration Findings and Reommendations Finding 9-1 ESD did not utilize a formal written pre-qualifiations proess for seleting experiened design onsultants. ESD hose onsultants

More information

Srinivas Bollapragada GE Global Research Center. Abstract

Srinivas Bollapragada GE Global Research Center. Abstract Sheduling Commerial Videotapes in Broadast Television Srinivas Bollapragada GE Global Researh Center Mihael Bussiek GAMS Development Corporation Suman Mallik University of Illinois at Urbana Champaign

More information

Transfer of Functions (Isle of Man Financial Services Authority) TRANSFER OF FUNCTIONS (ISLE OF MAN FINANCIAL SERVICES AUTHORITY) ORDER 2015

Transfer of Functions (Isle of Man Financial Services Authority) TRANSFER OF FUNCTIONS (ISLE OF MAN FINANCIAL SERVICES AUTHORITY) ORDER 2015 Transfer of Funtions (Isle of Man Finanial Servies Authority) Order 2015 Index TRANSFER OF FUNCTIONS (ISLE OF MAN FINANCIAL SERVICES AUTHORITY) ORDER 2015 Index Artile Page 1 Title... 3 2 Commenement...

More information

An integrated optimization model of a Closed- Loop Supply Chain under uncertainty

An integrated optimization model of a Closed- Loop Supply Chain under uncertainty ISSN 1816-6075 (Print), 1818-0523 (Online) Journal of System and Management Sienes Vol. 2 (2012) No. 3, pp. 9-17 An integrated optimization model of a Closed- Loop Supply Chain under unertainty Xiaoxia

More information

A Survey of Usability Evaluation in Virtual Environments: Classi cation and Comparison of Methods

A Survey of Usability Evaluation in Virtual Environments: Classi cation and Comparison of Methods Doug A. Bowman [email protected] Department of Computer Siene Virginia Teh Joseph L. Gabbard Deborah Hix [ jgabbard, hix]@vt.edu Systems Researh Center Virginia Teh A Survey of Usability Evaluation in Virtual

More information

CIS570 Lecture 4 Introduction to Data-flow Analysis 3

CIS570 Lecture 4 Introduction to Data-flow Analysis 3 Introdution to Data-flow Analysis Last Time Control flow analysis BT disussion Today Introdue iterative data-flow analysis Liveness analysis Introdue other useful onepts CIS570 Leture 4 Introdution to

More information

A Context-Aware Preference Database System

A Context-Aware Preference Database System J. PERVASIVE COMPUT. & COMM. (), MARCH 005. TROUBADOR PUBLISHING LTD) A Context-Aware Preferene Database System Kostas Stefanidis Department of Computer Siene, University of Ioannina,, [email protected] Evaggelia

More information

Henley Business School at Univ of Reading. Pre-Experience Postgraduate Programmes Chartered Institute of Personnel and Development (CIPD)

Henley Business School at Univ of Reading. Pre-Experience Postgraduate Programmes Chartered Institute of Personnel and Development (CIPD) MS in International Human Resoure Management For students entering in 2012/3 Awarding Institution: Teahing Institution: Relevant QAA subjet Benhmarking group(s): Faulty: Programme length: Date of speifiation:

More information

THE UNIVERSITY OF TEXAS AT ARLINGTON COLLEGE OF NURSING. NURS 6390-004 Introduction to Genetics and Genomics SYLLABUS

THE UNIVERSITY OF TEXAS AT ARLINGTON COLLEGE OF NURSING. NURS 6390-004 Introduction to Genetics and Genomics SYLLABUS THE UNIVERSITY OF TEXAS AT ARLINGTON COLLEGE OF NURSING NURS 6390-004 Introdution to Genetis and Genomis SYLLABUS Summer Interession 2011 Classroom #: TBA and 119 (lab) The University of Texas at Arlington

More information

A novel active mass damper for vibration control of bridges

A novel active mass damper for vibration control of bridges IABMAS 08, International Conferene on Bridge Maintenane, Safety and Management, 3-7 July 008, Seoul, Korea A novel ative mass damper for vibration ontrol of bridges U. Starossek & J. Sheller Strutural

More information

A Comparison of Service Quality between Private and Public Hospitals in Thailand

A Comparison of Service Quality between Private and Public Hospitals in Thailand International Journal of Business and Soial Siene Vol. 4 No. 11; September 2013 A Comparison of Servie Quality between Private and Hospitals in Thailand Khanhitpol Yousapronpaiboon, D.B.A. Assistant Professor

More information

Agile ALM White Paper: Redefining ALM with Five Key Practices

Agile ALM White Paper: Redefining ALM with Five Key Practices Agile ALM White Paper: Redefining ALM with Five Key Praties by Ethan Teng, Cyndi Mithell and Chad Wathington 2011 ThoughtWorks ln. All rights reserved www.studios.thoughtworks.om Introdution The pervasiveness

More information

An Efficient Network Traffic Classification Based on Unknown and Anomaly Flow Detection Mechanism

An Efficient Network Traffic Classification Based on Unknown and Anomaly Flow Detection Mechanism An Effiient Network Traffi Classifiation Based on Unknown and Anomaly Flow Detetion Mehanism G.Suganya.M.s.,B.Ed 1 1 Mphil.Sholar, Department of Computer Siene, KG College of Arts and Siene,Coimbatore.

More information

IT Essentials II: Network Operating Systems

IT Essentials II: Network Operating Systems Unit 13: IT Essentials II: Network Operating Systems Learning Outomes: A andidate following a programme of learning leading to this unit will be able to: demonstrate understanding of network operating

More information

The Application of Mamdani Fuzzy Model for Auto Zoom Function of a Digital Camera

The Application of Mamdani Fuzzy Model for Auto Zoom Function of a Digital Camera (IJCSIS) International Journal of Computer Siene and Information Seurity, Vol. 6, No. 3, 2009 The Appliation of Mamdani Fuzzy Model for Auto Funtion of a Digital Camera * I. Elamvazuthi, P. Vasant Universiti

More information

User s Guide VISFIT: a computer tool for the measurement of intrinsic viscosities

User s Guide VISFIT: a computer tool for the measurement of intrinsic viscosities File:UserVisfit_2.do User s Guide VISFIT: a omputer tool for the measurement of intrinsi visosities Version 2.a, September 2003 From: Multiple Linear Least-Squares Fits with a Common Interept: Determination

More information

BENEFICIARY CHANGE REQUEST

BENEFICIARY CHANGE REQUEST Poliy/Certifiate Number(s) BENEFICIARY CHANGE REQUEST *L2402* *L2402* Setion 1: Insured First Name Middle Name Last Name Permanent Address: City, State, Zip Code Please hek if you would like the address

More information

THE PERFORMANCE OF TRANSIT TIME FLOWMETERS IN HEATED GAS MIXTURES

THE PERFORMANCE OF TRANSIT TIME FLOWMETERS IN HEATED GAS MIXTURES Proeedings of FEDSM 98 998 ASME Fluids Engineering Division Summer Meeting June 2-25, 998 Washington DC FEDSM98-529 THE PERFORMANCE OF TRANSIT TIME FLOWMETERS IN HEATED GAS MIXTURES John D. Wright Proess

More information

UNIVERSITY AND WORK-STUDY EMPLOYERS WEB SITE USER S GUIDE

UNIVERSITY AND WORK-STUDY EMPLOYERS WEB SITE USER S GUIDE UNIVERSITY AND WORK-STUDY EMPLOYERS WEB SITE USER S GUIDE September 8, 2009 Table of Contents 1 Home 2 University 3 Your 4 Add 5 Managing 6 How 7 Viewing 8 Closing 9 Reposting Page 1 and Work-Study Employers

More information

Masters Thesis- Criticality Alarm System Design Guide with Accompanying Alarm System Development for the Radioisotope Production L

Masters Thesis- Criticality Alarm System Design Guide with Accompanying Alarm System Development for the Radioisotope Production L PNNL-18348 Prepared for the U.S. Department of Energy under Contrat DE-AC05-76RL01830 Masters Thesis- Critiality Alarm System Design Guide with Aompanying Alarm System Development for the Radioisotope

More information

SCHEME FOR FINANCING SCHOOLS

SCHEME FOR FINANCING SCHOOLS SCHEME FOR FINANCING SCHOOLS UNDER SECTION 48 OF THE SCHOOL STANDARDS AND FRAMEWORK ACT 1998 DfE Approved - Marh 1999 With amendments Marh 2001, Marh 2002, April 2003, July 2004, Marh 2005, February 2007,

More information

BUILDING CODE SUMMARY GENERAL NOTES DESIGN BUILD ELECTRICAL DESIGN BUILD MECHANICAL & PLUMBING GENERAL NOTES GENERAL NOTES G101

BUILDING CODE SUMMARY GENERAL NOTES DESIGN BUILD ELECTRICAL DESIGN BUILD MECHANICAL & PLUMBING GENERAL NOTES GENERAL NOTES G101 D D BUILDING CODE SUMMARY GENERAL NOTES PROJECT DESCRIPTION: THIS PROJECT IS THE MINOR RENOVATION OF AN EXISTING OUTPATIENT CLINIC. SCOPE CONSISTS OF PAINT, CARPET, TILE, AND UPGRADE TO DIGITAL X-RAY BUILDING

More information

i e AT 1 of 2012 DEBT RECOVERY AND ENFORCEMENT ACT 2012

i e AT 1 of 2012 DEBT RECOVERY AND ENFORCEMENT ACT 2012 i e AT 1 of 2012 DEBT RECOVERY AND ENFORCEMENT ACT 2012 Debt Reovery and Enforement At 2012 Index i e DEBT RECOVERY AND ENFORCEMENT ACT 2012 Index Setion Page PART 1 INTRODUCTORY 5 1 Short title... 5

More information

The Basics of International Trade: A Classroom Experiment

The Basics of International Trade: A Classroom Experiment The Basis of International Trade: A Classroom Experiment Alberto Isgut, Ganesan Ravishanker, and Tanya Rosenblat * Wesleyan University Abstrat We introdue a simple web-based lassroom experiment in whih

More information

arxiv:astro-ph/0304006v2 10 Jun 2003 Theory Group, MS 50A-5101 Lawrence Berkeley National Laboratory One Cyclotron Road Berkeley, CA 94720 USA

arxiv:astro-ph/0304006v2 10 Jun 2003 Theory Group, MS 50A-5101 Lawrence Berkeley National Laboratory One Cyclotron Road Berkeley, CA 94720 USA LBNL-52402 Marh 2003 On the Speed of Gravity and the v/ Corretions to the Shapiro Time Delay Stuart Samuel 1 arxiv:astro-ph/0304006v2 10 Jun 2003 Theory Group, MS 50A-5101 Lawrene Berkeley National Laboratory

More information

Supply chain coordination; A Game Theory approach

Supply chain coordination; A Game Theory approach aepted for publiation in the journal "Engineering Appliations of Artifiial Intelligene" 2008 upply hain oordination; A Game Theory approah Jean-Claude Hennet x and Yasemin Arda xx x LI CNR-UMR 668 Université

More information

F220 Series. Installation Instructions. Photoelectric Smoke/Heat Detectors

F220 Series. Installation Instructions. Photoelectric Smoke/Heat Detectors F0 Series EN Installation Instrutions Photoeletri Smoke/Heat Detetors F0 Series Installation Instrutions.0 General Information EN.0 General Information. F0-B6 Series Bases Use with the F0 Series Heat and

More information

SLA-based Resource Allocation for Software as a Service Provider (SaaS) in Cloud Computing Environments

SLA-based Resource Allocation for Software as a Service Provider (SaaS) in Cloud Computing Environments 2 th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing SLA-based Resoure Alloation for Software as a Servie Provider (SaaS) in Cloud Computing Environments Linlin Wu, Saurabh Kumar

More information

REDUCTION FACTOR OF FEEDING LINES THAT HAVE A CABLE AND AN OVERHEAD SECTION

REDUCTION FACTOR OF FEEDING LINES THAT HAVE A CABLE AND AN OVERHEAD SECTION C I E 17 th International Conferene on Eletriity istriution Barelona, 1-15 May 003 EUCTION FACTO OF FEEING LINES THAT HAVE A CABLE AN AN OVEHEA SECTION Ljuivoje opovi J.. Elektrodistriuija - Belgrade -

More information

How To Fator

How To Fator CHAPTER hapter 4 > Make the Connetion 4 INTRODUCTION Developing seret odes is big business beause of the widespread use of omputers and the Internet. Corporations all over the world sell enryption systems

More information

Improved SOM-Based High-Dimensional Data Visualization Algorithm

Improved SOM-Based High-Dimensional Data Visualization Algorithm Computer and Information Siene; Vol. 5, No. 4; 2012 ISSN 1913-8989 E-ISSN 1913-8997 Published by Canadian Center of Siene and Eduation Improved SOM-Based High-Dimensional Data Visualization Algorithm Wang

More information

Customer Reporting for SaaS Applications. Domain Basics. Managing my Domain

Customer Reporting for SaaS Applications. Domain Basics. Managing my Domain Produtivity Marketpla e Software as a Servie Invoiing Ordering Domains Customer Reporting for SaaS Appliations Domain Basis Managing my Domain Managing Domains Helpful Resoures Managing my Domain If you

More information

Impedance Method for Leak Detection in Zigzag Pipelines

Impedance Method for Leak Detection in Zigzag Pipelines 10.478/v10048-010-0036-0 MEASUREMENT SCIENCE REVIEW, Volume 10, No. 6, 010 Impedane Method for Leak Detetion in igzag Pipelines A. Lay-Ekuakille 1, P. Vergallo 1, A. Trotta 1 Dipartimento d Ingegneria

More information

Green Cloud Computing

Green Cloud Computing International Journal of Information and Computation Tehnology. ISSN 0974-2239 Volume 4, Number 4 (2014), pp. 431-436 International Researh Publiations House http://www. irphouse.om /ijit.htm Green Cloud

More information

Information Security 201

Information Security 201 FAS Information Seurity 201 Desktop Referene Guide Introdution Harvard University is ommitted to proteting information resoures that are ritial to its aademi and researh mission. Harvard is equally ommitted

More information

10.1 The Lorentz force law

10.1 The Lorentz force law Sott Hughes 10 Marh 2005 Massahusetts Institute of Tehnology Department of Physis 8.022 Spring 2004 Leture 10: Magneti fore; Magneti fields; Ampere s law 10.1 The Lorentz fore law Until now, we have been

More information

Pattern Recognition Techniques in Microarray Data Analysis

Pattern Recognition Techniques in Microarray Data Analysis Pattern Reognition Tehniques in Miroarray Data Analysis Miao Li, Biao Wang, Zohreh Momeni, and Faramarz Valafar Department of Computer Siene San Diego State University San Diego, California, USA [email protected]

More information

AngelCast: Cloud-based Peer-Assisted Live Streaming Using Optimized Multi-Tree Construction

AngelCast: Cloud-based Peer-Assisted Live Streaming Using Optimized Multi-Tree Construction AngelCast: Cloud-based Peer-Assisted Live Streaming Using Optimized Multi-Tree Constrution Raymond Sweha Boston University [email protected] Vathe Ishakian Boston University [email protected] Azer Bestavros

More information

BUSINESS PRACTICE BULLETIN The School Board of Broward County, Florida

BUSINESS PRACTICE BULLETIN The School Board of Broward County, Florida PAGE: 1 OF 16 (ECE) GUIDELINES FOR INFANT, TODDLER AND PRE-K PROGRAMS TOPICS IN BULLETIN: I. GENERAL INFORMATION II. CRITERIA FOR OPENING PROGRAM III. ACCOUNTING AND FINANCIAL MANAGEMENT IV. OPERATIONAL

More information

Account Contract for Card Acceptance

Account Contract for Card Acceptance Aount Contrat for Card Aeptane This is an Aount Contrat for the aeptane of debit ards and redit ards via payment terminals, on the website and/or by telephone, mail or fax. You enter into this ontrat with

More information

Learning Curves and Stochastic Models for Pricing and Provisioning Cloud Computing Services

Learning Curves and Stochastic Models for Pricing and Provisioning Cloud Computing Services T Learning Curves and Stohasti Models for Priing and Provisioning Cloud Computing Servies Amit Gera, Cathy H. Xia Dept. of Integrated Systems Engineering Ohio State University, Columbus, OH 4310 {gera.,

More information

5.2 The Master Theorem

5.2 The Master Theorem 170 CHAPTER 5. RECURSION AND RECURRENCES 5.2 The Master Theorem Master Theorem In the last setion, we saw three different kinds of behavior for reurrenes of the form at (n/2) + n These behaviors depended

More information

Customer Efficiency, Channel Usage and Firm Performance in Retail Banking

Customer Efficiency, Channel Usage and Firm Performance in Retail Banking Customer Effiieny, Channel Usage and Firm Performane in Retail Banking Mei Xue Operations and Strategi Management Department The Wallae E. Carroll Shool of Management Boston College 350 Fulton Hall, 140

More information

3 Game Theory: Basic Concepts

3 Game Theory: Basic Concepts 3 Game Theory: Basi Conepts Eah disipline of the soial sienes rules omfortably ithin its on hosen domain: : : so long as it stays largely oblivious of the others. Edard O. Wilson (1998):191 3.1 and and

More information

Henley Business School at Univ of Reading. Chartered Institute of Personnel and Development (CIPD)

Henley Business School at Univ of Reading. Chartered Institute of Personnel and Development (CIPD) MS in International Human Resoure Management (full-time) For students entering in 2015/6 Awarding Institution: Teahing Institution: Relevant QAA subjet Benhmarking group(s): Faulty: Programme length: Date

More information

i e AT 35 of 1986 ALCOHOLIC LIQUOR DUTIES ACT 1986

i e AT 35 of 1986 ALCOHOLIC LIQUOR DUTIES ACT 1986 i e AT 35 of 1986 ALCOHOLIC LIQUOR DUTIES ACT 1986 Aloholi Liquor Duties At 1986 Index i e ALCOHOLIC LIQUOR DUTIES ACT 1986 Index Setion Page PART I PRELIMINARY 9 1 The aloholi liquors dutiable under

More information

Implementation of PIC Based LED Displays

Implementation of PIC Based LED Displays International Journal of Eletronis and Computer Siene Engineering Available Online at www.ijese.org ISSN- - Implementation of PIC Based LED Displays Htet Htet Thit San, Chaw Myat Nwe and Hla Myo Tun Department

More information

Price-based versus quantity-based approaches for stimulating the development of renewable electricity: new insights in an old debate

Price-based versus quantity-based approaches for stimulating the development of renewable electricity: new insights in an old debate Prie-based versus -based approahes for stimulating the development of renewable eletriity: new insights in an old debate uthors: Dominique FINON, Philippe MENNTEU, Marie-Laure LMY, Institut d Eonomie et

More information

Entrepreneur s Guide. Starting and Growing a Business in Pennsylvania FEBRUARY 2015. newpa.com

Entrepreneur s Guide. Starting and Growing a Business in Pennsylvania FEBRUARY 2015. newpa.com Entrepreneur s Guide Starting and Growing a Business in Pennsylvania FEBRUARY 2015 newpa.om The Entrepreneur s Guide: Starting and Growing a Business in Pennsylvania was prepared by the Pennsylvania Department

More information

Retirement Option Election Form with Partial Lump Sum Payment

Retirement Option Election Form with Partial Lump Sum Payment Offie of the New York State Comptroller New York State and Loal Retirement System Employees Retirement System Polie and Fire Retirement System 110 State Street, Albany, New York 12244-0001 Retirement Option

More information

TRENDS IN EXECUTIVE EDUCATION: TOWARDS A SYSTEMS APPROACH TO EXECUTIVE DEVELOPMENT PLANNING

TRENDS IN EXECUTIVE EDUCATION: TOWARDS A SYSTEMS APPROACH TO EXECUTIVE DEVELOPMENT PLANNING INTERMAN 7 TRENDS IN EXECUTIVE EDUCATION: TOWARDS A SYSTEMS APPROACH TO EXECUTIVE DEVELOPMENT PLANNING by Douglas A. Ready, Albert A. Viere and Alan F. White RECEIVED 2 7 MAY 1393 International Labour

More information

Big Data Analysis and Reporting with Decision Tree Induction

Big Data Analysis and Reporting with Decision Tree Induction Big Data Analysis and Reporting with Deision Tree Indution PETRA PERNER Institute of Computer Vision and Applied Computer Sienes, IBaI Postbox 30 11 14, 04251 Leipzig GERMANY [email protected],

More information

AUDITING COST OVERRUN CLAIMS *

AUDITING COST OVERRUN CLAIMS * AUDITING COST OVERRUN CLAIMS * David Pérez-Castrillo # University of Copenhagen & Universitat Autònoma de Barelona Niolas Riedinger ENSAE, Paris Abstrat: We onsider a ost-reimbursement or a ost-sharing

More information

IEEE TRANSACTIONS ON DEPENDABLE AND SECURE COMPUTING, VOL. 9, NO. 3, MAY/JUNE 2012 401

IEEE TRANSACTIONS ON DEPENDABLE AND SECURE COMPUTING, VOL. 9, NO. 3, MAY/JUNE 2012 401 IEEE TRASACTIOS O DEPEDABLE AD SECURE COMPUTIG, VOL. 9, O. 3, MAY/JUE 2012 401 Mitigating Distributed Denial of Servie Attaks in Multiparty Appliations in the Presene of Clok Drifts Zhang Fu, Marina Papatriantafilou,

More information

Context in Artificial Intelligent and Information Modeling

Context in Artificial Intelligent and Information Modeling Context in Artifiial Intelligent and Information Modeling Manos Theodorakis ½ and Niolas Spyratos ¾ ¾ ½ FIT-Fraunhofer Institute for Applied Information Tehnology, D-53754, Sankt Augustin, Germany [email protected]

More information

CARRIER VOICE NETWORK MANAGEMENT

CARRIER VOICE NETWORK MANAGEMENT CARRIER VOICE NETWORK MANAGEMENT Elvis N. Ngah Supervised by: Dr. Sandjai Bhulai Department of Mathematis Vrije Universiteit Amsterdam The Netherlands Deryk Cole Network Operations Center Telesonique Global

More information