run2 262 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601
  1. __ Current Time: 100.22 __________________________________________
  2. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3. New State: inf
  4. Output Port Configuration:
  5. port <outport>:
  6. Eventsize = 1
  7. Next scheduled internal transition at time inf
  8. __ Current Time: 100.32 __________________________________________
  9. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  10. Input Port Configuration:
  11. port <inport>:
  12. Eventsize = 1
  13. New State: 0.3
  14. Next scheduled internal transition at time 100.62
  15. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  16. New State: inf
  17. Output Port Configuration:
  18. port <outport>:
  19. Eventsize = 1
  20. Next scheduled internal transition at time inf
  21. __ Current Time: 100.62 __________________________________________
  22. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  23. Input Port Configuration:
  24. port <inport>:
  25. Eventsize = 1
  26. New State: 0.3
  27. Next scheduled internal transition at time 100.92
  28. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  29. New State: inf
  30. Output Port Configuration:
  31. port <outport>:
  32. Eventsize = 1
  33. Next scheduled internal transition at time inf
  34. __ Current Time: 100.66 __________________________________________
  35. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  36. Input Port Configuration:
  37. port <inport>:
  38. Eventsize = 1
  39. New State: 0.66
  40. Next scheduled internal transition at time 101.32
  41. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  42. New State: inf
  43. Output Port Configuration:
  44. port <outport>:
  45. Eventsize = 1
  46. Next scheduled internal transition at time inf
  47. __ Current Time: 100.92 __________________________________________
  48. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  49. Input Port Configuration:
  50. port <inport>:
  51. Eventsize = 1
  52. New State: 0.3
  53. Next scheduled internal transition at time 101.22
  54. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  55. New State: inf
  56. Output Port Configuration:
  57. port <outport>:
  58. Eventsize = 1
  59. Next scheduled internal transition at time inf
  60. __ Current Time: 101.00 __________________________________________
  61. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  62. Input Port Configuration:
  63. port <inport>:
  64. Eventsize = 2
  65. New State: 0.66
  66. Next scheduled internal transition at time 101.66
  67. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  68. New State: 1.0
  69. Output Port Configuration:
  70. port <outport>:
  71. Eventsize = 2
  72. Next scheduled internal transition at time 102.00
  73. __ Current Time: 101.22 __________________________________________
  74. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  75. New State: inf
  76. Output Port Configuration:
  77. port <outport>:
  78. Eventsize = 1
  79. Next scheduled internal transition at time inf
  80. __ Current Time: 101.32 __________________________________________
  81. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  82. Input Port Configuration:
  83. port <inport>:
  84. Eventsize = 1
  85. New State: 0.3
  86. Next scheduled internal transition at time 101.62
  87. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  88. New State: inf
  89. Output Port Configuration:
  90. port <outport>:
  91. Eventsize = 1
  92. Next scheduled internal transition at time inf
  93. __ Current Time: 101.62 __________________________________________
  94. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  95. Input Port Configuration:
  96. port <inport>:
  97. Eventsize = 1
  98. New State: 0.3
  99. Next scheduled internal transition at time 101.92
  100. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  101. New State: inf
  102. Output Port Configuration:
  103. port <outport>:
  104. Eventsize = 1
  105. Next scheduled internal transition at time inf
  106. __ Current Time: 101.66 __________________________________________
  107. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  108. Input Port Configuration:
  109. port <inport>:
  110. Eventsize = 2
  111. New State: 0.66
  112. Next scheduled internal transition at time 102.32
  113. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  114. New State: inf
  115. Output Port Configuration:
  116. port <outport>:
  117. Eventsize = 2
  118. Next scheduled internal transition at time inf
  119. __ Current Time: 101.92 __________________________________________
  120. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  121. Input Port Configuration:
  122. port <inport>:
  123. Eventsize = 1
  124. New State: 0.3
  125. Next scheduled internal transition at time 102.22
  126. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  127. New State: inf
  128. Output Port Configuration:
  129. port <outport>:
  130. Eventsize = 1
  131. Next scheduled internal transition at time inf
  132. __ Current Time: 102.00 __________________________________________
  133. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  134. Input Port Configuration:
  135. port <inport>:
  136. Eventsize = 2
  137. New State: 0.66
  138. Next scheduled internal transition at time 102.66
  139. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  140. New State: 1.0
  141. Output Port Configuration:
  142. port <outport>:
  143. Eventsize = 2
  144. Next scheduled internal transition at time 103.00
  145. __ Current Time: 102.22 __________________________________________
  146. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  147. New State: inf
  148. Output Port Configuration:
  149. port <outport>:
  150. Eventsize = 1
  151. Next scheduled internal transition at time inf
  152. __ Current Time: 102.32 __________________________________________
  153. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  154. Input Port Configuration:
  155. port <inport>:
  156. Eventsize = 2
  157. New State: 0.3
  158. Next scheduled internal transition at time 102.62
  159. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  160. New State: inf
  161. Output Port Configuration:
  162. port <outport>:
  163. Eventsize = 2
  164. Next scheduled internal transition at time inf
  165. __ Current Time: 102.62 __________________________________________
  166. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  167. Input Port Configuration:
  168. port <inport>:
  169. Eventsize = 2
  170. New State: 0.3
  171. Next scheduled internal transition at time 102.92
  172. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  173. New State: inf
  174. Output Port Configuration:
  175. port <outport>:
  176. Eventsize = 2
  177. Next scheduled internal transition at time inf
  178. __ Current Time: 102.66 __________________________________________
  179. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  180. Input Port Configuration:
  181. port <inport>:
  182. Eventsize = 2
  183. New State: 0.66
  184. Next scheduled internal transition at time 103.32
  185. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  186. New State: inf
  187. Output Port Configuration:
  188. port <outport>:
  189. Eventsize = 2
  190. Next scheduled internal transition at time inf
  191. __ Current Time: 102.92 __________________________________________
  192. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  193. Input Port Configuration:
  194. port <inport>:
  195. Eventsize = 2
  196. New State: 0.3
  197. Next scheduled internal transition at time 103.22
  198. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  199. New State: inf
  200. Output Port Configuration:
  201. port <outport>:
  202. Eventsize = 2
  203. Next scheduled internal transition at time inf
  204. __ Current Time: 103.00 __________________________________________
  205. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  206. Input Port Configuration:
  207. port <inport>:
  208. Eventsize = 2
  209. New State: 0.66
  210. Next scheduled internal transition at time 103.66
  211. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  212. New State: 1.0
  213. Output Port Configuration:
  214. port <outport>:
  215. Eventsize = 2
  216. Next scheduled internal transition at time 104.00
  217. __ Current Time: 103.22 __________________________________________
  218. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  219. New State: inf
  220. Output Port Configuration:
  221. port <outport>:
  222. Eventsize = 2
  223. Next scheduled internal transition at time inf
  224. __ Current Time: 103.32 __________________________________________
  225. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  226. Input Port Configuration:
  227. port <inport>:
  228. Eventsize = 2
  229. New State: 0.3
  230. Next scheduled internal transition at time 103.62
  231. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  232. New State: inf
  233. Output Port Configuration:
  234. port <outport>:
  235. Eventsize = 2
  236. Next scheduled internal transition at time inf
  237. __ Current Time: 103.62 __________________________________________
  238. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  239. Input Port Configuration:
  240. port <inport>:
  241. Eventsize = 2
  242. New State: 0.3
  243. Next scheduled internal transition at time 103.92
  244. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  245. New State: inf
  246. Output Port Configuration:
  247. port <outport>:
  248. Eventsize = 2
  249. Next scheduled internal transition at time inf
  250. __ Current Time: 103.66 __________________________________________
  251. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  252. Input Port Configuration:
  253. port <inport>:
  254. Eventsize = 2
  255. New State: 0.66
  256. Next scheduled internal transition at time 104.32
  257. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  258. New State: inf
  259. Output Port Configuration:
  260. port <outport>:
  261. Eventsize = 2
  262. Next scheduled internal transition at time inf
  263. __ Current Time: 103.92 __________________________________________
  264. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  265. Input Port Configuration:
  266. port <inport>:
  267. Eventsize = 2
  268. New State: 0.3
  269. Next scheduled internal transition at time 104.22
  270. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  271. New State: inf
  272. Output Port Configuration:
  273. port <outport>:
  274. Eventsize = 2
  275. Next scheduled internal transition at time inf
  276. __ Current Time: 104.00 __________________________________________
  277. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  278. Input Port Configuration:
  279. port <inport>:
  280. Eventsize = 2
  281. New State: 0.66
  282. Next scheduled internal transition at time 104.66
  283. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  284. New State: 1.0
  285. Output Port Configuration:
  286. port <outport>:
  287. Eventsize = 2
  288. Next scheduled internal transition at time 105.00
  289. __ Current Time: 104.22 __________________________________________
  290. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  291. New State: inf
  292. Output Port Configuration:
  293. port <outport>:
  294. Eventsize = 2
  295. Next scheduled internal transition at time inf
  296. __ Current Time: 104.32 __________________________________________
  297. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  298. Input Port Configuration:
  299. port <inport>:
  300. Eventsize = 2
  301. New State: 0.3
  302. Next scheduled internal transition at time 104.62
  303. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  304. New State: inf
  305. Output Port Configuration:
  306. port <outport>:
  307. Eventsize = 2
  308. Next scheduled internal transition at time inf
  309. __ Current Time: 104.62 __________________________________________
  310. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  311. Input Port Configuration:
  312. port <inport>:
  313. Eventsize = 2
  314. New State: 0.3
  315. Next scheduled internal transition at time 104.92
  316. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  317. New State: inf
  318. Output Port Configuration:
  319. port <outport>:
  320. Eventsize = 2
  321. Next scheduled internal transition at time inf
  322. __ Current Time: 104.66 __________________________________________
  323. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  324. Input Port Configuration:
  325. port <inport>:
  326. Eventsize = 2
  327. New State: 0.66
  328. Next scheduled internal transition at time 105.32
  329. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  330. New State: inf
  331. Output Port Configuration:
  332. port <outport>:
  333. Eventsize = 2
  334. Next scheduled internal transition at time inf
  335. __ Current Time: 104.92 __________________________________________
  336. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  337. Input Port Configuration:
  338. port <inport>:
  339. Eventsize = 2
  340. New State: 0.3
  341. Next scheduled internal transition at time 105.22
  342. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  343. New State: inf
  344. Output Port Configuration:
  345. port <outport>:
  346. Eventsize = 2
  347. Next scheduled internal transition at time inf
  348. __ Current Time: 105.00 __________________________________________
  349. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  350. Input Port Configuration:
  351. port <inport>:
  352. Eventsize = 2
  353. New State: 0.66
  354. Next scheduled internal transition at time 105.66
  355. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  356. New State: 1.0
  357. Output Port Configuration:
  358. port <outport>:
  359. Eventsize = 2
  360. Next scheduled internal transition at time 106.00
  361. __ Current Time: 105.22 __________________________________________
  362. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  363. New State: inf
  364. Output Port Configuration:
  365. port <outport>:
  366. Eventsize = 2
  367. Next scheduled internal transition at time inf
  368. __ Current Time: 105.32 __________________________________________
  369. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  370. Input Port Configuration:
  371. port <inport>:
  372. Eventsize = 2
  373. New State: 0.3
  374. Next scheduled internal transition at time 105.62
  375. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  376. New State: inf
  377. Output Port Configuration:
  378. port <outport>:
  379. Eventsize = 2
  380. Next scheduled internal transition at time inf
  381. __ Current Time: 105.62 __________________________________________
  382. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  383. Input Port Configuration:
  384. port <inport>:
  385. Eventsize = 2
  386. New State: 0.3
  387. Next scheduled internal transition at time 105.92
  388. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  389. New State: inf
  390. Output Port Configuration:
  391. port <outport>:
  392. Eventsize = 2
  393. Next scheduled internal transition at time inf
  394. __ Current Time: 105.66 __________________________________________
  395. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  396. Input Port Configuration:
  397. port <inport>:
  398. Eventsize = 2
  399. New State: 0.66
  400. Next scheduled internal transition at time 106.32
  401. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  402. New State: inf
  403. Output Port Configuration:
  404. port <outport>:
  405. Eventsize = 2
  406. Next scheduled internal transition at time inf
  407. __ Current Time: 105.92 __________________________________________
  408. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  409. Input Port Configuration:
  410. port <inport>:
  411. Eventsize = 2
  412. New State: 0.3
  413. Next scheduled internal transition at time 106.22
  414. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  415. New State: inf
  416. Output Port Configuration:
  417. port <outport>:
  418. Eventsize = 2
  419. Next scheduled internal transition at time inf
  420. __ Current Time: 106.00 __________________________________________
  421. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  422. Input Port Configuration:
  423. port <inport>:
  424. Eventsize = 2
  425. New State: 0.66
  426. Next scheduled internal transition at time 106.66
  427. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  428. New State: 1.0
  429. Output Port Configuration:
  430. port <outport>:
  431. Eventsize = 2
  432. Next scheduled internal transition at time 107.00
  433. __ Current Time: 106.22 __________________________________________
  434. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  435. New State: inf
  436. Output Port Configuration:
  437. port <outport>:
  438. Eventsize = 2
  439. Next scheduled internal transition at time inf
  440. __ Current Time: 106.32 __________________________________________
  441. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  442. Input Port Configuration:
  443. port <inport>:
  444. Eventsize = 2
  445. New State: 0.3
  446. Next scheduled internal transition at time 106.62
  447. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  448. New State: inf
  449. Output Port Configuration:
  450. port <outport>:
  451. Eventsize = 2
  452. Next scheduled internal transition at time inf
  453. __ Current Time: 106.62 __________________________________________
  454. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  455. Input Port Configuration:
  456. port <inport>:
  457. Eventsize = 2
  458. New State: 0.3
  459. Next scheduled internal transition at time 106.92
  460. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  461. New State: inf
  462. Output Port Configuration:
  463. port <outport>:
  464. Eventsize = 2
  465. Next scheduled internal transition at time inf
  466. __ Current Time: 106.66 __________________________________________
  467. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  468. Input Port Configuration:
  469. port <inport>:
  470. Eventsize = 2
  471. New State: 0.66
  472. Next scheduled internal transition at time 107.32
  473. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  474. New State: inf
  475. Output Port Configuration:
  476. port <outport>:
  477. Eventsize = 2
  478. Next scheduled internal transition at time inf
  479. __ Current Time: 106.92 __________________________________________
  480. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  481. Input Port Configuration:
  482. port <inport>:
  483. Eventsize = 2
  484. New State: 0.3
  485. Next scheduled internal transition at time 107.22
  486. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  487. New State: inf
  488. Output Port Configuration:
  489. port <outport>:
  490. Eventsize = 2
  491. Next scheduled internal transition at time inf
  492. __ Current Time: 107.00 __________________________________________
  493. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  494. Input Port Configuration:
  495. port <inport>:
  496. Eventsize = 2
  497. New State: 0.66
  498. Next scheduled internal transition at time 107.66
  499. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  500. New State: 1.0
  501. Output Port Configuration:
  502. port <outport>:
  503. Eventsize = 2
  504. Next scheduled internal transition at time 108.00
  505. __ Current Time: 107.22 __________________________________________
  506. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  507. New State: inf
  508. Output Port Configuration:
  509. port <outport>:
  510. Eventsize = 2
  511. Next scheduled internal transition at time inf
  512. __ Current Time: 107.32 __________________________________________
  513. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  514. Input Port Configuration:
  515. port <inport>:
  516. Eventsize = 2
  517. New State: 0.3
  518. Next scheduled internal transition at time 107.62
  519. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  520. New State: inf
  521. Output Port Configuration:
  522. port <outport>:
  523. Eventsize = 2
  524. Next scheduled internal transition at time inf
  525. __ Current Time: 107.62 __________________________________________
  526. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  527. Input Port Configuration:
  528. port <inport>:
  529. Eventsize = 2
  530. New State: 0.3
  531. Next scheduled internal transition at time 107.92
  532. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  533. New State: inf
  534. Output Port Configuration:
  535. port <outport>:
  536. Eventsize = 2
  537. Next scheduled internal transition at time inf
  538. __ Current Time: 107.66 __________________________________________
  539. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  540. Input Port Configuration:
  541. port <inport>:
  542. Eventsize = 2
  543. New State: 0.66
  544. Next scheduled internal transition at time 108.32
  545. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  546. New State: inf
  547. Output Port Configuration:
  548. port <outport>:
  549. Eventsize = 2
  550. Next scheduled internal transition at time inf
  551. __ Current Time: 107.92 __________________________________________
  552. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  553. Input Port Configuration:
  554. port <inport>:
  555. Eventsize = 2
  556. New State: 0.3
  557. Next scheduled internal transition at time 108.22
  558. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  559. New State: inf
  560. Output Port Configuration:
  561. port <outport>:
  562. Eventsize = 2
  563. Next scheduled internal transition at time inf
  564. __ Current Time: 108.00 __________________________________________
  565. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  566. Input Port Configuration:
  567. port <inport>:
  568. Eventsize = 2
  569. New State: 0.66
  570. Next scheduled internal transition at time 108.66
  571. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  572. New State: 1.0
  573. Output Port Configuration:
  574. port <outport>:
  575. Eventsize = 2
  576. Next scheduled internal transition at time 109.00
  577. __ Current Time: 108.22 __________________________________________
  578. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  579. New State: inf
  580. Output Port Configuration:
  581. port <outport>:
  582. Eventsize = 2
  583. Next scheduled internal transition at time inf
  584. __ Current Time: 108.32 __________________________________________
  585. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  586. Input Port Configuration:
  587. port <inport>:
  588. Eventsize = 2
  589. New State: 0.3
  590. Next scheduled internal transition at time 108.62
  591. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  592. New State: inf
  593. Output Port Configuration:
  594. port <outport>:
  595. Eventsize = 2
  596. Next scheduled internal transition at time inf
  597. __ Current Time: 108.62 __________________________________________
  598. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  599. Input Port Configuration:
  600. port <inport>:
  601. Eventsize = 2
  602. New State: 0.3
  603. Next scheduled internal transition at time 108.92
  604. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  605. New State: inf
  606. Output Port Configuration:
  607. port <outport>:
  608. Eventsize = 2
  609. Next scheduled internal transition at time inf
  610. __ Current Time: 108.66 __________________________________________
  611. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  612. Input Port Configuration:
  613. port <inport>:
  614. Eventsize = 2
  615. New State: 0.66
  616. Next scheduled internal transition at time 109.32
  617. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  618. New State: inf
  619. Output Port Configuration:
  620. port <outport>:
  621. Eventsize = 2
  622. Next scheduled internal transition at time inf
  623. __ Current Time: 108.92 __________________________________________
  624. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  625. Input Port Configuration:
  626. port <inport>:
  627. Eventsize = 2
  628. New State: 0.3
  629. Next scheduled internal transition at time 109.22
  630. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  631. New State: inf
  632. Output Port Configuration:
  633. port <outport>:
  634. Eventsize = 2
  635. Next scheduled internal transition at time inf
  636. __ Current Time: 109.00 __________________________________________
  637. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  638. Input Port Configuration:
  639. port <inport>:
  640. Eventsize = 2
  641. New State: 0.66
  642. Next scheduled internal transition at time 109.66
  643. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  644. New State: 1.0
  645. Output Port Configuration:
  646. port <outport>:
  647. Eventsize = 2
  648. Next scheduled internal transition at time 110.00
  649. __ Current Time: 109.22 __________________________________________
  650. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  651. New State: inf
  652. Output Port Configuration:
  653. port <outport>:
  654. Eventsize = 2
  655. Next scheduled internal transition at time inf
  656. __ Current Time: 109.32 __________________________________________
  657. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  658. Input Port Configuration:
  659. port <inport>:
  660. Eventsize = 2
  661. New State: 0.3
  662. Next scheduled internal transition at time 109.62
  663. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  664. New State: inf
  665. Output Port Configuration:
  666. port <outport>:
  667. Eventsize = 2
  668. Next scheduled internal transition at time inf
  669. __ Current Time: 109.62 __________________________________________
  670. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  671. Input Port Configuration:
  672. port <inport>:
  673. Eventsize = 2
  674. New State: 0.3
  675. Next scheduled internal transition at time 109.92
  676. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  677. New State: inf
  678. Output Port Configuration:
  679. port <outport>:
  680. Eventsize = 2
  681. Next scheduled internal transition at time inf
  682. __ Current Time: 109.66 __________________________________________
  683. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  684. Input Port Configuration:
  685. port <inport>:
  686. Eventsize = 2
  687. New State: 0.66
  688. Next scheduled internal transition at time 110.32
  689. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  690. New State: inf
  691. Output Port Configuration:
  692. port <outport>:
  693. Eventsize = 2
  694. Next scheduled internal transition at time inf
  695. __ Current Time: 109.92 __________________________________________
  696. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  697. Input Port Configuration:
  698. port <inport>:
  699. Eventsize = 2
  700. New State: 0.3
  701. Next scheduled internal transition at time 110.22
  702. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  703. New State: inf
  704. Output Port Configuration:
  705. port <outport>:
  706. Eventsize = 2
  707. Next scheduled internal transition at time inf
  708. __ Current Time: 110.00 __________________________________________
  709. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  710. Input Port Configuration:
  711. port <inport>:
  712. Eventsize = 2
  713. New State: 0.66
  714. Next scheduled internal transition at time 110.66
  715. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  716. New State: 1.0
  717. Output Port Configuration:
  718. port <outport>:
  719. Eventsize = 2
  720. Next scheduled internal transition at time 111.00
  721. __ Current Time: 110.22 __________________________________________
  722. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  723. New State: inf
  724. Output Port Configuration:
  725. port <outport>:
  726. Eventsize = 2
  727. Next scheduled internal transition at time inf
  728. __ Current Time: 110.32 __________________________________________
  729. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  730. Input Port Configuration:
  731. port <inport>:
  732. Eventsize = 2
  733. New State: 0.3
  734. Next scheduled internal transition at time 110.62
  735. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  736. New State: inf
  737. Output Port Configuration:
  738. port <outport>:
  739. Eventsize = 2
  740. Next scheduled internal transition at time inf
  741. __ Current Time: 110.62 __________________________________________
  742. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  743. Input Port Configuration:
  744. port <inport>:
  745. Eventsize = 2
  746. New State: 0.3
  747. Next scheduled internal transition at time 110.92
  748. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  749. New State: inf
  750. Output Port Configuration:
  751. port <outport>:
  752. Eventsize = 2
  753. Next scheduled internal transition at time inf
  754. __ Current Time: 110.66 __________________________________________
  755. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  756. Input Port Configuration:
  757. port <inport>:
  758. Eventsize = 2
  759. New State: 0.66
  760. Next scheduled internal transition at time 111.32
  761. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  762. New State: inf
  763. Output Port Configuration:
  764. port <outport>:
  765. Eventsize = 2
  766. Next scheduled internal transition at time inf
  767. __ Current Time: 110.92 __________________________________________
  768. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  769. Input Port Configuration:
  770. port <inport>:
  771. Eventsize = 2
  772. New State: 0.3
  773. Next scheduled internal transition at time 111.22
  774. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  775. New State: inf
  776. Output Port Configuration:
  777. port <outport>:
  778. Eventsize = 2
  779. Next scheduled internal transition at time inf
  780. __ Current Time: 111.00 __________________________________________
  781. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  782. Input Port Configuration:
  783. port <inport>:
  784. Eventsize = 2
  785. New State: 0.66
  786. Next scheduled internal transition at time 111.66
  787. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  788. New State: 1.0
  789. Output Port Configuration:
  790. port <outport>:
  791. Eventsize = 2
  792. Next scheduled internal transition at time 112.00
  793. __ Current Time: 111.22 __________________________________________
  794. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  795. New State: inf
  796. Output Port Configuration:
  797. port <outport>:
  798. Eventsize = 2
  799. Next scheduled internal transition at time inf
  800. __ Current Time: 111.32 __________________________________________
  801. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  802. Input Port Configuration:
  803. port <inport>:
  804. Eventsize = 2
  805. New State: 0.3
  806. Next scheduled internal transition at time 111.62
  807. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  808. New State: inf
  809. Output Port Configuration:
  810. port <outport>:
  811. Eventsize = 2
  812. Next scheduled internal transition at time inf
  813. __ Current Time: 111.62 __________________________________________
  814. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  815. Input Port Configuration:
  816. port <inport>:
  817. Eventsize = 2
  818. New State: 0.3
  819. Next scheduled internal transition at time 111.92
  820. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  821. New State: inf
  822. Output Port Configuration:
  823. port <outport>:
  824. Eventsize = 2
  825. Next scheduled internal transition at time inf
  826. __ Current Time: 111.66 __________________________________________
  827. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  828. Input Port Configuration:
  829. port <inport>:
  830. Eventsize = 2
  831. New State: 0.66
  832. Next scheduled internal transition at time 112.32
  833. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  834. New State: inf
  835. Output Port Configuration:
  836. port <outport>:
  837. Eventsize = 2
  838. Next scheduled internal transition at time inf
  839. __ Current Time: 111.92 __________________________________________
  840. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  841. Input Port Configuration:
  842. port <inport>:
  843. Eventsize = 2
  844. New State: 0.3
  845. Next scheduled internal transition at time 112.22
  846. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  847. New State: inf
  848. Output Port Configuration:
  849. port <outport>:
  850. Eventsize = 2
  851. Next scheduled internal transition at time inf
  852. __ Current Time: 112.00 __________________________________________
  853. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  854. Input Port Configuration:
  855. port <inport>:
  856. Eventsize = 2
  857. New State: 0.66
  858. Next scheduled internal transition at time 112.66
  859. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  860. New State: 1.0
  861. Output Port Configuration:
  862. port <outport>:
  863. Eventsize = 2
  864. Next scheduled internal transition at time 113.00
  865. __ Current Time: 112.22 __________________________________________
  866. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  867. New State: inf
  868. Output Port Configuration:
  869. port <outport>:
  870. Eventsize = 2
  871. Next scheduled internal transition at time inf
  872. __ Current Time: 112.32 __________________________________________
  873. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  874. Input Port Configuration:
  875. port <inport>:
  876. Eventsize = 2
  877. New State: 0.3
  878. Next scheduled internal transition at time 112.62
  879. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  880. New State: inf
  881. Output Port Configuration:
  882. port <outport>:
  883. Eventsize = 2
  884. Next scheduled internal transition at time inf
  885. __ Current Time: 112.62 __________________________________________
  886. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  887. Input Port Configuration:
  888. port <inport>:
  889. Eventsize = 2
  890. New State: 0.3
  891. Next scheduled internal transition at time 112.92
  892. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  893. New State: inf
  894. Output Port Configuration:
  895. port <outport>:
  896. Eventsize = 2
  897. Next scheduled internal transition at time inf
  898. __ Current Time: 112.66 __________________________________________
  899. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  900. Input Port Configuration:
  901. port <inport>:
  902. Eventsize = 2
  903. New State: 0.66
  904. Next scheduled internal transition at time 113.32
  905. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  906. New State: inf
  907. Output Port Configuration:
  908. port <outport>:
  909. Eventsize = 2
  910. Next scheduled internal transition at time inf
  911. __ Current Time: 112.92 __________________________________________
  912. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  913. Input Port Configuration:
  914. port <inport>:
  915. Eventsize = 2
  916. New State: 0.3
  917. Next scheduled internal transition at time 113.22
  918. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  919. New State: inf
  920. Output Port Configuration:
  921. port <outport>:
  922. Eventsize = 2
  923. Next scheduled internal transition at time inf
  924. __ Current Time: 113.00 __________________________________________
  925. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  926. Input Port Configuration:
  927. port <inport>:
  928. Eventsize = 2
  929. New State: 0.66
  930. Next scheduled internal transition at time 113.66
  931. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  932. New State: 1.0
  933. Output Port Configuration:
  934. port <outport>:
  935. Eventsize = 2
  936. Next scheduled internal transition at time 114.00
  937. __ Current Time: 113.22 __________________________________________
  938. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  939. New State: inf
  940. Output Port Configuration:
  941. port <outport>:
  942. Eventsize = 2
  943. Next scheduled internal transition at time inf
  944. __ Current Time: 113.32 __________________________________________
  945. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  946. Input Port Configuration:
  947. port <inport>:
  948. Eventsize = 2
  949. New State: 0.3
  950. Next scheduled internal transition at time 113.62
  951. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  952. New State: inf
  953. Output Port Configuration:
  954. port <outport>:
  955. Eventsize = 2
  956. Next scheduled internal transition at time inf
  957. __ Current Time: 113.62 __________________________________________
  958. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  959. Input Port Configuration:
  960. port <inport>:
  961. Eventsize = 2
  962. New State: 0.3
  963. Next scheduled internal transition at time 113.92
  964. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  965. New State: inf
  966. Output Port Configuration:
  967. port <outport>:
  968. Eventsize = 2
  969. Next scheduled internal transition at time inf
  970. __ Current Time: 113.66 __________________________________________
  971. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  972. Input Port Configuration:
  973. port <inport>:
  974. Eventsize = 2
  975. New State: 0.66
  976. Next scheduled internal transition at time 114.32
  977. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  978. New State: inf
  979. Output Port Configuration:
  980. port <outport>:
  981. Eventsize = 2
  982. Next scheduled internal transition at time inf
  983. __ Current Time: 113.92 __________________________________________
  984. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  985. Input Port Configuration:
  986. port <inport>:
  987. Eventsize = 2
  988. New State: 0.3
  989. Next scheduled internal transition at time 114.22
  990. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  991. New State: inf
  992. Output Port Configuration:
  993. port <outport>:
  994. Eventsize = 2
  995. Next scheduled internal transition at time inf
  996. __ Current Time: 114.00 __________________________________________
  997. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  998. Input Port Configuration:
  999. port <inport>:
  1000. Eventsize = 2
  1001. New State: 0.66
  1002. Next scheduled internal transition at time 114.66
  1003. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1004. New State: 1.0
  1005. Output Port Configuration:
  1006. port <outport>:
  1007. Eventsize = 2
  1008. Next scheduled internal transition at time 115.00
  1009. __ Current Time: 114.22 __________________________________________
  1010. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1011. New State: inf
  1012. Output Port Configuration:
  1013. port <outport>:
  1014. Eventsize = 2
  1015. Next scheduled internal transition at time inf
  1016. __ Current Time: 114.32 __________________________________________
  1017. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1018. Input Port Configuration:
  1019. port <inport>:
  1020. Eventsize = 2
  1021. New State: 0.3
  1022. Next scheduled internal transition at time 114.62
  1023. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1024. New State: inf
  1025. Output Port Configuration:
  1026. port <outport>:
  1027. Eventsize = 2
  1028. Next scheduled internal transition at time inf
  1029. __ Current Time: 114.62 __________________________________________
  1030. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1031. Input Port Configuration:
  1032. port <inport>:
  1033. Eventsize = 2
  1034. New State: 0.3
  1035. Next scheduled internal transition at time 114.92
  1036. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1037. New State: inf
  1038. Output Port Configuration:
  1039. port <outport>:
  1040. Eventsize = 2
  1041. Next scheduled internal transition at time inf
  1042. __ Current Time: 114.66 __________________________________________
  1043. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1044. Input Port Configuration:
  1045. port <inport>:
  1046. Eventsize = 2
  1047. New State: 0.66
  1048. Next scheduled internal transition at time 115.32
  1049. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1050. New State: inf
  1051. Output Port Configuration:
  1052. port <outport>:
  1053. Eventsize = 2
  1054. Next scheduled internal transition at time inf
  1055. __ Current Time: 114.92 __________________________________________
  1056. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1057. Input Port Configuration:
  1058. port <inport>:
  1059. Eventsize = 2
  1060. New State: 0.3
  1061. Next scheduled internal transition at time 115.22
  1062. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1063. New State: inf
  1064. Output Port Configuration:
  1065. port <outport>:
  1066. Eventsize = 2
  1067. Next scheduled internal transition at time inf
  1068. __ Current Time: 115.00 __________________________________________
  1069. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1070. Input Port Configuration:
  1071. port <inport>:
  1072. Eventsize = 2
  1073. New State: 0.66
  1074. Next scheduled internal transition at time 115.66
  1075. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1076. New State: 1.0
  1077. Output Port Configuration:
  1078. port <outport>:
  1079. Eventsize = 2
  1080. Next scheduled internal transition at time 116.00
  1081. __ Current Time: 115.22 __________________________________________
  1082. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1083. New State: inf
  1084. Output Port Configuration:
  1085. port <outport>:
  1086. Eventsize = 2
  1087. Next scheduled internal transition at time inf
  1088. __ Current Time: 115.32 __________________________________________
  1089. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1090. Input Port Configuration:
  1091. port <inport>:
  1092. Eventsize = 2
  1093. New State: 0.3
  1094. Next scheduled internal transition at time 115.62
  1095. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1096. New State: inf
  1097. Output Port Configuration:
  1098. port <outport>:
  1099. Eventsize = 2
  1100. Next scheduled internal transition at time inf
  1101. __ Current Time: 115.62 __________________________________________
  1102. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1103. Input Port Configuration:
  1104. port <inport>:
  1105. Eventsize = 2
  1106. New State: 0.3
  1107. Next scheduled internal transition at time 115.92
  1108. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1109. New State: inf
  1110. Output Port Configuration:
  1111. port <outport>:
  1112. Eventsize = 2
  1113. Next scheduled internal transition at time inf
  1114. __ Current Time: 115.66 __________________________________________
  1115. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1116. Input Port Configuration:
  1117. port <inport>:
  1118. Eventsize = 2
  1119. New State: 0.66
  1120. Next scheduled internal transition at time 116.32
  1121. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1122. New State: inf
  1123. Output Port Configuration:
  1124. port <outport>:
  1125. Eventsize = 2
  1126. Next scheduled internal transition at time inf
  1127. __ Current Time: 115.92 __________________________________________
  1128. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1129. Input Port Configuration:
  1130. port <inport>:
  1131. Eventsize = 2
  1132. New State: 0.3
  1133. Next scheduled internal transition at time 116.22
  1134. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1135. New State: inf
  1136. Output Port Configuration:
  1137. port <outport>:
  1138. Eventsize = 2
  1139. Next scheduled internal transition at time inf
  1140. __ Current Time: 116.00 __________________________________________
  1141. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1142. Input Port Configuration:
  1143. port <inport>:
  1144. Eventsize = 2
  1145. New State: 0.66
  1146. Next scheduled internal transition at time 116.66
  1147. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1148. New State: 1.0
  1149. Output Port Configuration:
  1150. port <outport>:
  1151. Eventsize = 2
  1152. Next scheduled internal transition at time 117.00
  1153. __ Current Time: 116.22 __________________________________________
  1154. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1155. New State: inf
  1156. Output Port Configuration:
  1157. port <outport>:
  1158. Eventsize = 2
  1159. Next scheduled internal transition at time inf
  1160. __ Current Time: 116.32 __________________________________________
  1161. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1162. Input Port Configuration:
  1163. port <inport>:
  1164. Eventsize = 2
  1165. New State: 0.3
  1166. Next scheduled internal transition at time 116.62
  1167. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1168. New State: inf
  1169. Output Port Configuration:
  1170. port <outport>:
  1171. Eventsize = 2
  1172. Next scheduled internal transition at time inf
  1173. __ Current Time: 116.62 __________________________________________
  1174. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1175. Input Port Configuration:
  1176. port <inport>:
  1177. Eventsize = 2
  1178. New State: 0.3
  1179. Next scheduled internal transition at time 116.92
  1180. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1181. New State: inf
  1182. Output Port Configuration:
  1183. port <outport>:
  1184. Eventsize = 2
  1185. Next scheduled internal transition at time inf
  1186. __ Current Time: 116.66 __________________________________________
  1187. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1188. Input Port Configuration:
  1189. port <inport>:
  1190. Eventsize = 2
  1191. New State: 0.66
  1192. Next scheduled internal transition at time 117.32
  1193. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1194. New State: inf
  1195. Output Port Configuration:
  1196. port <outport>:
  1197. Eventsize = 2
  1198. Next scheduled internal transition at time inf
  1199. __ Current Time: 116.92 __________________________________________
  1200. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1201. Input Port Configuration:
  1202. port <inport>:
  1203. Eventsize = 2
  1204. New State: 0.3
  1205. Next scheduled internal transition at time 117.22
  1206. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1207. New State: inf
  1208. Output Port Configuration:
  1209. port <outport>:
  1210. Eventsize = 2
  1211. Next scheduled internal transition at time inf
  1212. __ Current Time: 117.00 __________________________________________
  1213. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1214. Input Port Configuration:
  1215. port <inport>:
  1216. Eventsize = 2
  1217. New State: 0.66
  1218. Next scheduled internal transition at time 117.66
  1219. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1220. New State: 1.0
  1221. Output Port Configuration:
  1222. port <outport>:
  1223. Eventsize = 2
  1224. Next scheduled internal transition at time 118.00
  1225. __ Current Time: 117.22 __________________________________________
  1226. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1227. New State: inf
  1228. Output Port Configuration:
  1229. port <outport>:
  1230. Eventsize = 2
  1231. Next scheduled internal transition at time inf
  1232. __ Current Time: 117.32 __________________________________________
  1233. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1234. Input Port Configuration:
  1235. port <inport>:
  1236. Eventsize = 2
  1237. New State: 0.3
  1238. Next scheduled internal transition at time 117.62
  1239. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1240. New State: inf
  1241. Output Port Configuration:
  1242. port <outport>:
  1243. Eventsize = 2
  1244. Next scheduled internal transition at time inf
  1245. __ Current Time: 117.62 __________________________________________
  1246. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1247. Input Port Configuration:
  1248. port <inport>:
  1249. Eventsize = 2
  1250. New State: 0.3
  1251. Next scheduled internal transition at time 117.92
  1252. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1253. New State: inf
  1254. Output Port Configuration:
  1255. port <outport>:
  1256. Eventsize = 2
  1257. Next scheduled internal transition at time inf
  1258. __ Current Time: 117.66 __________________________________________
  1259. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1260. Input Port Configuration:
  1261. port <inport>:
  1262. Eventsize = 2
  1263. New State: 0.66
  1264. Next scheduled internal transition at time 118.32
  1265. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1266. New State: inf
  1267. Output Port Configuration:
  1268. port <outport>:
  1269. Eventsize = 2
  1270. Next scheduled internal transition at time inf
  1271. __ Current Time: 117.92 __________________________________________
  1272. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1273. Input Port Configuration:
  1274. port <inport>:
  1275. Eventsize = 2
  1276. New State: 0.3
  1277. Next scheduled internal transition at time 118.22
  1278. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1279. New State: inf
  1280. Output Port Configuration:
  1281. port <outport>:
  1282. Eventsize = 2
  1283. Next scheduled internal transition at time inf
  1284. __ Current Time: 118.00 __________________________________________
  1285. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1286. Input Port Configuration:
  1287. port <inport>:
  1288. Eventsize = 2
  1289. New State: 0.66
  1290. Next scheduled internal transition at time 118.66
  1291. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1292. New State: 1.0
  1293. Output Port Configuration:
  1294. port <outport>:
  1295. Eventsize = 2
  1296. Next scheduled internal transition at time 119.00
  1297. __ Current Time: 118.22 __________________________________________
  1298. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1299. New State: inf
  1300. Output Port Configuration:
  1301. port <outport>:
  1302. Eventsize = 2
  1303. Next scheduled internal transition at time inf
  1304. __ Current Time: 118.32 __________________________________________
  1305. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1306. Input Port Configuration:
  1307. port <inport>:
  1308. Eventsize = 2
  1309. New State: 0.3
  1310. Next scheduled internal transition at time 118.62
  1311. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1312. New State: inf
  1313. Output Port Configuration:
  1314. port <outport>:
  1315. Eventsize = 2
  1316. Next scheduled internal transition at time inf
  1317. __ Current Time: 118.62 __________________________________________
  1318. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1319. Input Port Configuration:
  1320. port <inport>:
  1321. Eventsize = 2
  1322. New State: 0.3
  1323. Next scheduled internal transition at time 118.92
  1324. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1325. New State: inf
  1326. Output Port Configuration:
  1327. port <outport>:
  1328. Eventsize = 2
  1329. Next scheduled internal transition at time inf
  1330. __ Current Time: 118.66 __________________________________________
  1331. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1332. Input Port Configuration:
  1333. port <inport>:
  1334. Eventsize = 2
  1335. New State: 0.66
  1336. Next scheduled internal transition at time 119.32
  1337. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1338. New State: inf
  1339. Output Port Configuration:
  1340. port <outport>:
  1341. Eventsize = 2
  1342. Next scheduled internal transition at time inf
  1343. __ Current Time: 118.92 __________________________________________
  1344. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1345. Input Port Configuration:
  1346. port <inport>:
  1347. Eventsize = 2
  1348. New State: 0.3
  1349. Next scheduled internal transition at time 119.22
  1350. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1351. New State: inf
  1352. Output Port Configuration:
  1353. port <outport>:
  1354. Eventsize = 2
  1355. Next scheduled internal transition at time inf
  1356. __ Current Time: 119.00 __________________________________________
  1357. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1358. Input Port Configuration:
  1359. port <inport>:
  1360. Eventsize = 2
  1361. New State: 0.66
  1362. Next scheduled internal transition at time 119.66
  1363. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1364. New State: 1.0
  1365. Output Port Configuration:
  1366. port <outport>:
  1367. Eventsize = 2
  1368. Next scheduled internal transition at time 120.00
  1369. __ Current Time: 119.22 __________________________________________
  1370. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1371. New State: inf
  1372. Output Port Configuration:
  1373. port <outport>:
  1374. Eventsize = 2
  1375. Next scheduled internal transition at time inf
  1376. __ Current Time: 119.32 __________________________________________
  1377. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1378. Input Port Configuration:
  1379. port <inport>:
  1380. Eventsize = 2
  1381. New State: 0.3
  1382. Next scheduled internal transition at time 119.62
  1383. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1384. New State: inf
  1385. Output Port Configuration:
  1386. port <outport>:
  1387. Eventsize = 2
  1388. Next scheduled internal transition at time inf
  1389. __ Current Time: 119.62 __________________________________________
  1390. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1391. Input Port Configuration:
  1392. port <inport>:
  1393. Eventsize = 2
  1394. New State: 0.3
  1395. Next scheduled internal transition at time 119.92
  1396. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1397. New State: inf
  1398. Output Port Configuration:
  1399. port <outport>:
  1400. Eventsize = 2
  1401. Next scheduled internal transition at time inf
  1402. __ Current Time: 119.66 __________________________________________
  1403. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1404. Input Port Configuration:
  1405. port <inport>:
  1406. Eventsize = 2
  1407. New State: 0.66
  1408. Next scheduled internal transition at time 120.32
  1409. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1410. New State: inf
  1411. Output Port Configuration:
  1412. port <outport>:
  1413. Eventsize = 2
  1414. Next scheduled internal transition at time inf
  1415. __ Current Time: 119.92 __________________________________________
  1416. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1417. Input Port Configuration:
  1418. port <inport>:
  1419. Eventsize = 2
  1420. New State: 0.3
  1421. Next scheduled internal transition at time 120.22
  1422. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1423. New State: inf
  1424. Output Port Configuration:
  1425. port <outport>:
  1426. Eventsize = 2
  1427. Next scheduled internal transition at time inf
  1428. __ Current Time: 120.00 __________________________________________
  1429. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1430. Input Port Configuration:
  1431. port <inport>:
  1432. Eventsize = 2
  1433. New State: 0.66
  1434. Next scheduled internal transition at time 120.66
  1435. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1436. New State: 1.0
  1437. Output Port Configuration:
  1438. port <outport>:
  1439. Eventsize = 2
  1440. Next scheduled internal transition at time 121.00
  1441. __ Current Time: 120.22 __________________________________________
  1442. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1443. New State: inf
  1444. Output Port Configuration:
  1445. port <outport>:
  1446. Eventsize = 2
  1447. Next scheduled internal transition at time inf
  1448. __ Current Time: 120.32 __________________________________________
  1449. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1450. Input Port Configuration:
  1451. port <inport>:
  1452. Eventsize = 2
  1453. New State: 0.3
  1454. Next scheduled internal transition at time 120.62
  1455. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1456. New State: inf
  1457. Output Port Configuration:
  1458. port <outport>:
  1459. Eventsize = 2
  1460. Next scheduled internal transition at time inf
  1461. __ Current Time: 120.62 __________________________________________
  1462. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1463. Input Port Configuration:
  1464. port <inport>:
  1465. Eventsize = 2
  1466. New State: 0.3
  1467. Next scheduled internal transition at time 120.92
  1468. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1469. New State: inf
  1470. Output Port Configuration:
  1471. port <outport>:
  1472. Eventsize = 2
  1473. Next scheduled internal transition at time inf
  1474. __ Current Time: 120.66 __________________________________________
  1475. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1476. Input Port Configuration:
  1477. port <inport>:
  1478. Eventsize = 2
  1479. New State: 0.66
  1480. Next scheduled internal transition at time 121.32
  1481. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1482. New State: inf
  1483. Output Port Configuration:
  1484. port <outport>:
  1485. Eventsize = 2
  1486. Next scheduled internal transition at time inf
  1487. __ Current Time: 120.92 __________________________________________
  1488. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1489. Input Port Configuration:
  1490. port <inport>:
  1491. Eventsize = 2
  1492. New State: 0.3
  1493. Next scheduled internal transition at time 121.22
  1494. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1495. New State: inf
  1496. Output Port Configuration:
  1497. port <outport>:
  1498. Eventsize = 2
  1499. Next scheduled internal transition at time inf
  1500. __ Current Time: 121.00 __________________________________________
  1501. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1502. Input Port Configuration:
  1503. port <inport>:
  1504. Eventsize = 2
  1505. New State: 0.66
  1506. Next scheduled internal transition at time 121.66
  1507. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1508. New State: 1.0
  1509. Output Port Configuration:
  1510. port <outport>:
  1511. Eventsize = 2
  1512. Next scheduled internal transition at time 122.00
  1513. __ Current Time: 121.22 __________________________________________
  1514. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1515. New State: inf
  1516. Output Port Configuration:
  1517. port <outport>:
  1518. Eventsize = 2
  1519. Next scheduled internal transition at time inf
  1520. __ Current Time: 121.32 __________________________________________
  1521. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1522. Input Port Configuration:
  1523. port <inport>:
  1524. Eventsize = 2
  1525. New State: 0.3
  1526. Next scheduled internal transition at time 121.62
  1527. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1528. New State: inf
  1529. Output Port Configuration:
  1530. port <outport>:
  1531. Eventsize = 2
  1532. Next scheduled internal transition at time inf
  1533. __ Current Time: 121.62 __________________________________________
  1534. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1535. Input Port Configuration:
  1536. port <inport>:
  1537. Eventsize = 2
  1538. New State: 0.3
  1539. Next scheduled internal transition at time 121.92
  1540. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1541. New State: inf
  1542. Output Port Configuration:
  1543. port <outport>:
  1544. Eventsize = 2
  1545. Next scheduled internal transition at time inf
  1546. __ Current Time: 121.66 __________________________________________
  1547. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1548. Input Port Configuration:
  1549. port <inport>:
  1550. Eventsize = 2
  1551. New State: 0.66
  1552. Next scheduled internal transition at time 122.32
  1553. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1554. New State: inf
  1555. Output Port Configuration:
  1556. port <outport>:
  1557. Eventsize = 2
  1558. Next scheduled internal transition at time inf
  1559. __ Current Time: 121.92 __________________________________________
  1560. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1561. Input Port Configuration:
  1562. port <inport>:
  1563. Eventsize = 2
  1564. New State: 0.3
  1565. Next scheduled internal transition at time 122.22
  1566. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1567. New State: inf
  1568. Output Port Configuration:
  1569. port <outport>:
  1570. Eventsize = 2
  1571. Next scheduled internal transition at time inf
  1572. __ Current Time: 122.00 __________________________________________
  1573. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1574. Input Port Configuration:
  1575. port <inport>:
  1576. Eventsize = 2
  1577. New State: 0.66
  1578. Next scheduled internal transition at time 122.66
  1579. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1580. New State: 1.0
  1581. Output Port Configuration:
  1582. port <outport>:
  1583. Eventsize = 2
  1584. Next scheduled internal transition at time 123.00
  1585. __ Current Time: 122.22 __________________________________________
  1586. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1587. New State: inf
  1588. Output Port Configuration:
  1589. port <outport>:
  1590. Eventsize = 2
  1591. Next scheduled internal transition at time inf
  1592. __ Current Time: 122.32 __________________________________________
  1593. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1594. Input Port Configuration:
  1595. port <inport>:
  1596. Eventsize = 2
  1597. New State: 0.3
  1598. Next scheduled internal transition at time 122.62
  1599. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1600. New State: inf
  1601. Output Port Configuration:
  1602. port <outport>:
  1603. Eventsize = 2
  1604. Next scheduled internal transition at time inf
  1605. __ Current Time: 122.62 __________________________________________
  1606. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1607. Input Port Configuration:
  1608. port <inport>:
  1609. Eventsize = 2
  1610. New State: 0.3
  1611. Next scheduled internal transition at time 122.92
  1612. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1613. New State: inf
  1614. Output Port Configuration:
  1615. port <outport>:
  1616. Eventsize = 2
  1617. Next scheduled internal transition at time inf
  1618. __ Current Time: 122.66 __________________________________________
  1619. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1620. Input Port Configuration:
  1621. port <inport>:
  1622. Eventsize = 2
  1623. New State: 0.66
  1624. Next scheduled internal transition at time 123.32
  1625. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1626. New State: inf
  1627. Output Port Configuration:
  1628. port <outport>:
  1629. Eventsize = 2
  1630. Next scheduled internal transition at time inf
  1631. __ Current Time: 122.92 __________________________________________
  1632. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1633. Input Port Configuration:
  1634. port <inport>:
  1635. Eventsize = 2
  1636. New State: 0.3
  1637. Next scheduled internal transition at time 123.22
  1638. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1639. New State: inf
  1640. Output Port Configuration:
  1641. port <outport>:
  1642. Eventsize = 2
  1643. Next scheduled internal transition at time inf
  1644. __ Current Time: 123.00 __________________________________________
  1645. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1646. Input Port Configuration:
  1647. port <inport>:
  1648. Eventsize = 2
  1649. New State: 0.66
  1650. Next scheduled internal transition at time 123.66
  1651. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1652. New State: 1.0
  1653. Output Port Configuration:
  1654. port <outport>:
  1655. Eventsize = 2
  1656. Next scheduled internal transition at time 124.00
  1657. __ Current Time: 123.22 __________________________________________
  1658. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1659. New State: inf
  1660. Output Port Configuration:
  1661. port <outport>:
  1662. Eventsize = 2
  1663. Next scheduled internal transition at time inf
  1664. __ Current Time: 123.32 __________________________________________
  1665. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1666. Input Port Configuration:
  1667. port <inport>:
  1668. Eventsize = 2
  1669. New State: 0.3
  1670. Next scheduled internal transition at time 123.62
  1671. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1672. New State: inf
  1673. Output Port Configuration:
  1674. port <outport>:
  1675. Eventsize = 2
  1676. Next scheduled internal transition at time inf
  1677. __ Current Time: 123.62 __________________________________________
  1678. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1679. Input Port Configuration:
  1680. port <inport>:
  1681. Eventsize = 2
  1682. New State: 0.3
  1683. Next scheduled internal transition at time 123.92
  1684. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1685. New State: inf
  1686. Output Port Configuration:
  1687. port <outport>:
  1688. Eventsize = 2
  1689. Next scheduled internal transition at time inf
  1690. __ Current Time: 123.66 __________________________________________
  1691. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1692. Input Port Configuration:
  1693. port <inport>:
  1694. Eventsize = 2
  1695. New State: 0.66
  1696. Next scheduled internal transition at time 124.32
  1697. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1698. New State: inf
  1699. Output Port Configuration:
  1700. port <outport>:
  1701. Eventsize = 2
  1702. Next scheduled internal transition at time inf
  1703. __ Current Time: 123.92 __________________________________________
  1704. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1705. Input Port Configuration:
  1706. port <inport>:
  1707. Eventsize = 2
  1708. New State: 0.3
  1709. Next scheduled internal transition at time 124.22
  1710. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1711. New State: inf
  1712. Output Port Configuration:
  1713. port <outport>:
  1714. Eventsize = 2
  1715. Next scheduled internal transition at time inf
  1716. __ Current Time: 124.00 __________________________________________
  1717. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1718. Input Port Configuration:
  1719. port <inport>:
  1720. Eventsize = 2
  1721. New State: 0.66
  1722. Next scheduled internal transition at time 124.66
  1723. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1724. New State: 1.0
  1725. Output Port Configuration:
  1726. port <outport>:
  1727. Eventsize = 2
  1728. Next scheduled internal transition at time 125.00
  1729. __ Current Time: 124.22 __________________________________________
  1730. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1731. New State: inf
  1732. Output Port Configuration:
  1733. port <outport>:
  1734. Eventsize = 2
  1735. Next scheduled internal transition at time inf
  1736. __ Current Time: 124.32 __________________________________________
  1737. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1738. Input Port Configuration:
  1739. port <inport>:
  1740. Eventsize = 2
  1741. New State: 0.3
  1742. Next scheduled internal transition at time 124.62
  1743. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1744. New State: inf
  1745. Output Port Configuration:
  1746. port <outport>:
  1747. Eventsize = 2
  1748. Next scheduled internal transition at time inf
  1749. __ Current Time: 124.62 __________________________________________
  1750. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1751. Input Port Configuration:
  1752. port <inport>:
  1753. Eventsize = 2
  1754. New State: 0.3
  1755. Next scheduled internal transition at time 124.92
  1756. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1757. New State: inf
  1758. Output Port Configuration:
  1759. port <outport>:
  1760. Eventsize = 2
  1761. Next scheduled internal transition at time inf
  1762. __ Current Time: 124.66 __________________________________________
  1763. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1764. Input Port Configuration:
  1765. port <inport>:
  1766. Eventsize = 2
  1767. New State: 0.66
  1768. Next scheduled internal transition at time 125.32
  1769. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1770. New State: inf
  1771. Output Port Configuration:
  1772. port <outport>:
  1773. Eventsize = 2
  1774. Next scheduled internal transition at time inf
  1775. __ Current Time: 124.92 __________________________________________
  1776. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1777. Input Port Configuration:
  1778. port <inport>:
  1779. Eventsize = 2
  1780. New State: 0.3
  1781. Next scheduled internal transition at time 125.22
  1782. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1783. New State: inf
  1784. Output Port Configuration:
  1785. port <outport>:
  1786. Eventsize = 2
  1787. Next scheduled internal transition at time inf
  1788. __ Current Time: 125.00 __________________________________________
  1789. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1790. Input Port Configuration:
  1791. port <inport>:
  1792. Eventsize = 2
  1793. New State: 0.66
  1794. Next scheduled internal transition at time 125.66
  1795. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1796. New State: 1.0
  1797. Output Port Configuration:
  1798. port <outport>:
  1799. Eventsize = 2
  1800. Next scheduled internal transition at time 126.00
  1801. __ Current Time: 125.22 __________________________________________
  1802. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1803. New State: inf
  1804. Output Port Configuration:
  1805. port <outport>:
  1806. Eventsize = 2
  1807. Next scheduled internal transition at time inf
  1808. __ Current Time: 125.32 __________________________________________
  1809. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1810. Input Port Configuration:
  1811. port <inport>:
  1812. Eventsize = 2
  1813. New State: 0.3
  1814. Next scheduled internal transition at time 125.62
  1815. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1816. New State: inf
  1817. Output Port Configuration:
  1818. port <outport>:
  1819. Eventsize = 2
  1820. Next scheduled internal transition at time inf
  1821. __ Current Time: 125.62 __________________________________________
  1822. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1823. Input Port Configuration:
  1824. port <inport>:
  1825. Eventsize = 2
  1826. New State: 0.3
  1827. Next scheduled internal transition at time 125.92
  1828. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1829. New State: inf
  1830. Output Port Configuration:
  1831. port <outport>:
  1832. Eventsize = 2
  1833. Next scheduled internal transition at time inf
  1834. __ Current Time: 125.66 __________________________________________
  1835. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1836. Input Port Configuration:
  1837. port <inport>:
  1838. Eventsize = 2
  1839. New State: 0.66
  1840. Next scheduled internal transition at time 126.32
  1841. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1842. New State: inf
  1843. Output Port Configuration:
  1844. port <outport>:
  1845. Eventsize = 2
  1846. Next scheduled internal transition at time inf
  1847. __ Current Time: 125.92 __________________________________________
  1848. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1849. Input Port Configuration:
  1850. port <inport>:
  1851. Eventsize = 2
  1852. New State: 0.3
  1853. Next scheduled internal transition at time 126.22
  1854. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1855. New State: inf
  1856. Output Port Configuration:
  1857. port <outport>:
  1858. Eventsize = 2
  1859. Next scheduled internal transition at time inf
  1860. __ Current Time: 126.00 __________________________________________
  1861. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1862. Input Port Configuration:
  1863. port <inport>:
  1864. Eventsize = 2
  1865. New State: 0.66
  1866. Next scheduled internal transition at time 126.66
  1867. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1868. New State: 1.0
  1869. Output Port Configuration:
  1870. port <outport>:
  1871. Eventsize = 2
  1872. Next scheduled internal transition at time 127.00
  1873. __ Current Time: 126.22 __________________________________________
  1874. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1875. New State: inf
  1876. Output Port Configuration:
  1877. port <outport>:
  1878. Eventsize = 2
  1879. Next scheduled internal transition at time inf
  1880. __ Current Time: 126.32 __________________________________________
  1881. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1882. Input Port Configuration:
  1883. port <inport>:
  1884. Eventsize = 2
  1885. New State: 0.3
  1886. Next scheduled internal transition at time 126.62
  1887. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1888. New State: inf
  1889. Output Port Configuration:
  1890. port <outport>:
  1891. Eventsize = 2
  1892. Next scheduled internal transition at time inf
  1893. __ Current Time: 126.62 __________________________________________
  1894. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1895. Input Port Configuration:
  1896. port <inport>:
  1897. Eventsize = 2
  1898. New State: 0.3
  1899. Next scheduled internal transition at time 126.92
  1900. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1901. New State: inf
  1902. Output Port Configuration:
  1903. port <outport>:
  1904. Eventsize = 2
  1905. Next scheduled internal transition at time inf
  1906. __ Current Time: 126.66 __________________________________________
  1907. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1908. Input Port Configuration:
  1909. port <inport>:
  1910. Eventsize = 2
  1911. New State: 0.66
  1912. Next scheduled internal transition at time 127.32
  1913. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1914. New State: inf
  1915. Output Port Configuration:
  1916. port <outport>:
  1917. Eventsize = 2
  1918. Next scheduled internal transition at time inf
  1919. __ Current Time: 126.92 __________________________________________
  1920. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1921. Input Port Configuration:
  1922. port <inport>:
  1923. Eventsize = 2
  1924. New State: 0.3
  1925. Next scheduled internal transition at time 127.22
  1926. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1927. New State: inf
  1928. Output Port Configuration:
  1929. port <outport>:
  1930. Eventsize = 2
  1931. Next scheduled internal transition at time inf
  1932. __ Current Time: 127.00 __________________________________________
  1933. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1934. Input Port Configuration:
  1935. port <inport>:
  1936. Eventsize = 2
  1937. New State: 0.66
  1938. Next scheduled internal transition at time 127.66
  1939. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  1940. New State: 1.0
  1941. Output Port Configuration:
  1942. port <outport>:
  1943. Eventsize = 2
  1944. Next scheduled internal transition at time 128.00
  1945. __ Current Time: 127.22 __________________________________________
  1946. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1947. New State: inf
  1948. Output Port Configuration:
  1949. port <outport>:
  1950. Eventsize = 2
  1951. Next scheduled internal transition at time inf
  1952. __ Current Time: 127.32 __________________________________________
  1953. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1954. Input Port Configuration:
  1955. port <inport>:
  1956. Eventsize = 2
  1957. New State: 0.3
  1958. Next scheduled internal transition at time 127.62
  1959. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1960. New State: inf
  1961. Output Port Configuration:
  1962. port <outport>:
  1963. Eventsize = 2
  1964. Next scheduled internal transition at time inf
  1965. __ Current Time: 127.62 __________________________________________
  1966. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1967. Input Port Configuration:
  1968. port <inport>:
  1969. Eventsize = 2
  1970. New State: 0.3
  1971. Next scheduled internal transition at time 127.92
  1972. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  1973. New State: inf
  1974. Output Port Configuration:
  1975. port <outport>:
  1976. Eventsize = 2
  1977. Next scheduled internal transition at time inf
  1978. __ Current Time: 127.66 __________________________________________
  1979. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  1980. Input Port Configuration:
  1981. port <inport>:
  1982. Eventsize = 2
  1983. New State: 0.66
  1984. Next scheduled internal transition at time 128.32
  1985. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  1986. New State: inf
  1987. Output Port Configuration:
  1988. port <outport>:
  1989. Eventsize = 2
  1990. Next scheduled internal transition at time inf
  1991. __ Current Time: 127.92 __________________________________________
  1992. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  1993. Input Port Configuration:
  1994. port <inport>:
  1995. Eventsize = 2
  1996. New State: 0.3
  1997. Next scheduled internal transition at time 128.22
  1998. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  1999. New State: inf
  2000. Output Port Configuration:
  2001. port <outport>:
  2002. Eventsize = 2
  2003. Next scheduled internal transition at time inf
  2004. __ Current Time: 128.00 __________________________________________
  2005. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2006. Input Port Configuration:
  2007. port <inport>:
  2008. Eventsize = 2
  2009. New State: 0.66
  2010. Next scheduled internal transition at time 128.66
  2011. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2012. New State: 1.0
  2013. Output Port Configuration:
  2014. port <outport>:
  2015. Eventsize = 2
  2016. Next scheduled internal transition at time 129.00
  2017. __ Current Time: 128.22 __________________________________________
  2018. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2019. New State: inf
  2020. Output Port Configuration:
  2021. port <outport>:
  2022. Eventsize = 2
  2023. Next scheduled internal transition at time inf
  2024. __ Current Time: 128.32 __________________________________________
  2025. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2026. Input Port Configuration:
  2027. port <inport>:
  2028. Eventsize = 2
  2029. New State: 0.3
  2030. Next scheduled internal transition at time 128.62
  2031. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2032. New State: inf
  2033. Output Port Configuration:
  2034. port <outport>:
  2035. Eventsize = 2
  2036. Next scheduled internal transition at time inf
  2037. __ Current Time: 128.62 __________________________________________
  2038. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2039. Input Port Configuration:
  2040. port <inport>:
  2041. Eventsize = 2
  2042. New State: 0.3
  2043. Next scheduled internal transition at time 128.92
  2044. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2045. New State: inf
  2046. Output Port Configuration:
  2047. port <outport>:
  2048. Eventsize = 2
  2049. Next scheduled internal transition at time inf
  2050. __ Current Time: 128.66 __________________________________________
  2051. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2052. Input Port Configuration:
  2053. port <inport>:
  2054. Eventsize = 2
  2055. New State: 0.66
  2056. Next scheduled internal transition at time 129.32
  2057. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2058. New State: inf
  2059. Output Port Configuration:
  2060. port <outport>:
  2061. Eventsize = 2
  2062. Next scheduled internal transition at time inf
  2063. __ Current Time: 128.92 __________________________________________
  2064. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2065. Input Port Configuration:
  2066. port <inport>:
  2067. Eventsize = 2
  2068. New State: 0.3
  2069. Next scheduled internal transition at time 129.22
  2070. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2071. New State: inf
  2072. Output Port Configuration:
  2073. port <outport>:
  2074. Eventsize = 2
  2075. Next scheduled internal transition at time inf
  2076. __ Current Time: 129.00 __________________________________________
  2077. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2078. Input Port Configuration:
  2079. port <inport>:
  2080. Eventsize = 2
  2081. New State: 0.66
  2082. Next scheduled internal transition at time 129.66
  2083. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2084. New State: 1.0
  2085. Output Port Configuration:
  2086. port <outport>:
  2087. Eventsize = 2
  2088. Next scheduled internal transition at time 130.00
  2089. __ Current Time: 129.22 __________________________________________
  2090. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2091. New State: inf
  2092. Output Port Configuration:
  2093. port <outport>:
  2094. Eventsize = 2
  2095. Next scheduled internal transition at time inf
  2096. __ Current Time: 129.32 __________________________________________
  2097. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2098. Input Port Configuration:
  2099. port <inport>:
  2100. Eventsize = 2
  2101. New State: 0.3
  2102. Next scheduled internal transition at time 129.62
  2103. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2104. New State: inf
  2105. Output Port Configuration:
  2106. port <outport>:
  2107. Eventsize = 2
  2108. Next scheduled internal transition at time inf
  2109. __ Current Time: 129.62 __________________________________________
  2110. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2111. Input Port Configuration:
  2112. port <inport>:
  2113. Eventsize = 2
  2114. New State: 0.3
  2115. Next scheduled internal transition at time 129.92
  2116. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2117. New State: inf
  2118. Output Port Configuration:
  2119. port <outport>:
  2120. Eventsize = 2
  2121. Next scheduled internal transition at time inf
  2122. __ Current Time: 129.66 __________________________________________
  2123. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2124. Input Port Configuration:
  2125. port <inport>:
  2126. Eventsize = 2
  2127. New State: 0.66
  2128. Next scheduled internal transition at time 130.32
  2129. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2130. New State: inf
  2131. Output Port Configuration:
  2132. port <outport>:
  2133. Eventsize = 2
  2134. Next scheduled internal transition at time inf
  2135. __ Current Time: 129.92 __________________________________________
  2136. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2137. Input Port Configuration:
  2138. port <inport>:
  2139. Eventsize = 2
  2140. New State: 0.3
  2141. Next scheduled internal transition at time 130.22
  2142. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2143. New State: inf
  2144. Output Port Configuration:
  2145. port <outport>:
  2146. Eventsize = 2
  2147. Next scheduled internal transition at time inf
  2148. __ Current Time: 130.00 __________________________________________
  2149. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2150. Input Port Configuration:
  2151. port <inport>:
  2152. Eventsize = 2
  2153. New State: 0.66
  2154. Next scheduled internal transition at time 130.66
  2155. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2156. New State: 1.0
  2157. Output Port Configuration:
  2158. port <outport>:
  2159. Eventsize = 2
  2160. Next scheduled internal transition at time 131.00
  2161. __ Current Time: 130.22 __________________________________________
  2162. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2163. New State: inf
  2164. Output Port Configuration:
  2165. port <outport>:
  2166. Eventsize = 2
  2167. Next scheduled internal transition at time inf
  2168. __ Current Time: 130.32 __________________________________________
  2169. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2170. Input Port Configuration:
  2171. port <inport>:
  2172. Eventsize = 2
  2173. New State: 0.3
  2174. Next scheduled internal transition at time 130.62
  2175. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2176. New State: inf
  2177. Output Port Configuration:
  2178. port <outport>:
  2179. Eventsize = 2
  2180. Next scheduled internal transition at time inf
  2181. __ Current Time: 130.62 __________________________________________
  2182. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2183. Input Port Configuration:
  2184. port <inport>:
  2185. Eventsize = 2
  2186. New State: 0.3
  2187. Next scheduled internal transition at time 130.92
  2188. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2189. New State: inf
  2190. Output Port Configuration:
  2191. port <outport>:
  2192. Eventsize = 2
  2193. Next scheduled internal transition at time inf
  2194. __ Current Time: 130.66 __________________________________________
  2195. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2196. Input Port Configuration:
  2197. port <inport>:
  2198. Eventsize = 2
  2199. New State: 0.66
  2200. Next scheduled internal transition at time 131.32
  2201. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2202. New State: inf
  2203. Output Port Configuration:
  2204. port <outport>:
  2205. Eventsize = 2
  2206. Next scheduled internal transition at time inf
  2207. __ Current Time: 130.92 __________________________________________
  2208. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2209. Input Port Configuration:
  2210. port <inport>:
  2211. Eventsize = 2
  2212. New State: 0.3
  2213. Next scheduled internal transition at time 131.22
  2214. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2215. New State: inf
  2216. Output Port Configuration:
  2217. port <outport>:
  2218. Eventsize = 2
  2219. Next scheduled internal transition at time inf
  2220. __ Current Time: 131.00 __________________________________________
  2221. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2222. Input Port Configuration:
  2223. port <inport>:
  2224. Eventsize = 2
  2225. New State: 0.66
  2226. Next scheduled internal transition at time 131.66
  2227. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2228. New State: 1.0
  2229. Output Port Configuration:
  2230. port <outport>:
  2231. Eventsize = 2
  2232. Next scheduled internal transition at time 132.00
  2233. __ Current Time: 131.22 __________________________________________
  2234. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2235. New State: inf
  2236. Output Port Configuration:
  2237. port <outport>:
  2238. Eventsize = 2
  2239. Next scheduled internal transition at time inf
  2240. __ Current Time: 131.32 __________________________________________
  2241. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2242. Input Port Configuration:
  2243. port <inport>:
  2244. Eventsize = 2
  2245. New State: 0.3
  2246. Next scheduled internal transition at time 131.62
  2247. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2248. New State: inf
  2249. Output Port Configuration:
  2250. port <outport>:
  2251. Eventsize = 2
  2252. Next scheduled internal transition at time inf
  2253. __ Current Time: 131.62 __________________________________________
  2254. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2255. Input Port Configuration:
  2256. port <inport>:
  2257. Eventsize = 2
  2258. New State: 0.3
  2259. Next scheduled internal transition at time 131.92
  2260. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2261. New State: inf
  2262. Output Port Configuration:
  2263. port <outport>:
  2264. Eventsize = 2
  2265. Next scheduled internal transition at time inf
  2266. __ Current Time: 131.66 __________________________________________
  2267. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2268. Input Port Configuration:
  2269. port <inport>:
  2270. Eventsize = 2
  2271. New State: 0.66
  2272. Next scheduled internal transition at time 132.32
  2273. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2274. New State: inf
  2275. Output Port Configuration:
  2276. port <outport>:
  2277. Eventsize = 2
  2278. Next scheduled internal transition at time inf
  2279. __ Current Time: 131.92 __________________________________________
  2280. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2281. Input Port Configuration:
  2282. port <inport>:
  2283. Eventsize = 2
  2284. New State: 0.3
  2285. Next scheduled internal transition at time 132.22
  2286. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2287. New State: inf
  2288. Output Port Configuration:
  2289. port <outport>:
  2290. Eventsize = 2
  2291. Next scheduled internal transition at time inf
  2292. __ Current Time: 132.00 __________________________________________
  2293. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2294. Input Port Configuration:
  2295. port <inport>:
  2296. Eventsize = 2
  2297. New State: 0.66
  2298. Next scheduled internal transition at time 132.66
  2299. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2300. New State: 1.0
  2301. Output Port Configuration:
  2302. port <outport>:
  2303. Eventsize = 2
  2304. Next scheduled internal transition at time 133.00
  2305. __ Current Time: 132.22 __________________________________________
  2306. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2307. New State: inf
  2308. Output Port Configuration:
  2309. port <outport>:
  2310. Eventsize = 2
  2311. Next scheduled internal transition at time inf
  2312. __ Current Time: 132.32 __________________________________________
  2313. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2314. Input Port Configuration:
  2315. port <inport>:
  2316. Eventsize = 2
  2317. New State: 0.3
  2318. Next scheduled internal transition at time 132.62
  2319. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2320. New State: inf
  2321. Output Port Configuration:
  2322. port <outport>:
  2323. Eventsize = 2
  2324. Next scheduled internal transition at time inf
  2325. __ Current Time: 132.62 __________________________________________
  2326. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2327. Input Port Configuration:
  2328. port <inport>:
  2329. Eventsize = 2
  2330. New State: 0.3
  2331. Next scheduled internal transition at time 132.92
  2332. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2333. New State: inf
  2334. Output Port Configuration:
  2335. port <outport>:
  2336. Eventsize = 2
  2337. Next scheduled internal transition at time inf
  2338. __ Current Time: 132.66 __________________________________________
  2339. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2340. Input Port Configuration:
  2341. port <inport>:
  2342. Eventsize = 2
  2343. New State: 0.66
  2344. Next scheduled internal transition at time 133.32
  2345. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2346. New State: inf
  2347. Output Port Configuration:
  2348. port <outport>:
  2349. Eventsize = 2
  2350. Next scheduled internal transition at time inf
  2351. __ Current Time: 132.92 __________________________________________
  2352. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2353. Input Port Configuration:
  2354. port <inport>:
  2355. Eventsize = 2
  2356. New State: 0.3
  2357. Next scheduled internal transition at time 133.22
  2358. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2359. New State: inf
  2360. Output Port Configuration:
  2361. port <outport>:
  2362. Eventsize = 2
  2363. Next scheduled internal transition at time inf
  2364. __ Current Time: 133.00 __________________________________________
  2365. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2366. Input Port Configuration:
  2367. port <inport>:
  2368. Eventsize = 2
  2369. New State: 0.66
  2370. Next scheduled internal transition at time 133.66
  2371. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2372. New State: 1.0
  2373. Output Port Configuration:
  2374. port <outport>:
  2375. Eventsize = 2
  2376. Next scheduled internal transition at time 134.00
  2377. __ Current Time: 133.22 __________________________________________
  2378. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2379. New State: inf
  2380. Output Port Configuration:
  2381. port <outport>:
  2382. Eventsize = 2
  2383. Next scheduled internal transition at time inf
  2384. __ Current Time: 133.32 __________________________________________
  2385. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2386. Input Port Configuration:
  2387. port <inport>:
  2388. Eventsize = 2
  2389. New State: 0.3
  2390. Next scheduled internal transition at time 133.62
  2391. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2392. New State: inf
  2393. Output Port Configuration:
  2394. port <outport>:
  2395. Eventsize = 2
  2396. Next scheduled internal transition at time inf
  2397. __ Current Time: 133.62 __________________________________________
  2398. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2399. Input Port Configuration:
  2400. port <inport>:
  2401. Eventsize = 2
  2402. New State: 0.3
  2403. Next scheduled internal transition at time 133.92
  2404. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2405. New State: inf
  2406. Output Port Configuration:
  2407. port <outport>:
  2408. Eventsize = 2
  2409. Next scheduled internal transition at time inf
  2410. __ Current Time: 133.66 __________________________________________
  2411. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2412. Input Port Configuration:
  2413. port <inport>:
  2414. Eventsize = 2
  2415. New State: 0.66
  2416. Next scheduled internal transition at time 134.32
  2417. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2418. New State: inf
  2419. Output Port Configuration:
  2420. port <outport>:
  2421. Eventsize = 2
  2422. Next scheduled internal transition at time inf
  2423. __ Current Time: 133.92 __________________________________________
  2424. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2425. Input Port Configuration:
  2426. port <inport>:
  2427. Eventsize = 2
  2428. New State: 0.3
  2429. Next scheduled internal transition at time 134.22
  2430. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2431. New State: inf
  2432. Output Port Configuration:
  2433. port <outport>:
  2434. Eventsize = 2
  2435. Next scheduled internal transition at time inf
  2436. __ Current Time: 134.00 __________________________________________
  2437. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2438. Input Port Configuration:
  2439. port <inport>:
  2440. Eventsize = 2
  2441. New State: 0.66
  2442. Next scheduled internal transition at time 134.66
  2443. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2444. New State: 1.0
  2445. Output Port Configuration:
  2446. port <outport>:
  2447. Eventsize = 2
  2448. Next scheduled internal transition at time 135.00
  2449. __ Current Time: 134.22 __________________________________________
  2450. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2451. New State: inf
  2452. Output Port Configuration:
  2453. port <outport>:
  2454. Eventsize = 2
  2455. Next scheduled internal transition at time inf
  2456. __ Current Time: 134.32 __________________________________________
  2457. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2458. Input Port Configuration:
  2459. port <inport>:
  2460. Eventsize = 2
  2461. New State: 0.3
  2462. Next scheduled internal transition at time 134.62
  2463. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2464. New State: inf
  2465. Output Port Configuration:
  2466. port <outport>:
  2467. Eventsize = 2
  2468. Next scheduled internal transition at time inf
  2469. __ Current Time: 134.62 __________________________________________
  2470. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2471. Input Port Configuration:
  2472. port <inport>:
  2473. Eventsize = 2
  2474. New State: 0.3
  2475. Next scheduled internal transition at time 134.92
  2476. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2477. New State: inf
  2478. Output Port Configuration:
  2479. port <outport>:
  2480. Eventsize = 2
  2481. Next scheduled internal transition at time inf
  2482. __ Current Time: 134.66 __________________________________________
  2483. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2484. Input Port Configuration:
  2485. port <inport>:
  2486. Eventsize = 2
  2487. New State: 0.66
  2488. Next scheduled internal transition at time 135.32
  2489. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2490. New State: inf
  2491. Output Port Configuration:
  2492. port <outport>:
  2493. Eventsize = 2
  2494. Next scheduled internal transition at time inf
  2495. __ Current Time: 134.92 __________________________________________
  2496. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2497. Input Port Configuration:
  2498. port <inport>:
  2499. Eventsize = 2
  2500. New State: 0.3
  2501. Next scheduled internal transition at time 135.22
  2502. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2503. New State: inf
  2504. Output Port Configuration:
  2505. port <outport>:
  2506. Eventsize = 2
  2507. Next scheduled internal transition at time inf
  2508. __ Current Time: 135.00 __________________________________________
  2509. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2510. Input Port Configuration:
  2511. port <inport>:
  2512. Eventsize = 2
  2513. New State: 0.66
  2514. Next scheduled internal transition at time 135.66
  2515. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2516. New State: 1.0
  2517. Output Port Configuration:
  2518. port <outport>:
  2519. Eventsize = 2
  2520. Next scheduled internal transition at time 136.00
  2521. __ Current Time: 135.22 __________________________________________
  2522. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2523. New State: inf
  2524. Output Port Configuration:
  2525. port <outport>:
  2526. Eventsize = 2
  2527. Next scheduled internal transition at time inf
  2528. __ Current Time: 135.32 __________________________________________
  2529. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2530. Input Port Configuration:
  2531. port <inport>:
  2532. Eventsize = 2
  2533. New State: 0.3
  2534. Next scheduled internal transition at time 135.62
  2535. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2536. New State: inf
  2537. Output Port Configuration:
  2538. port <outport>:
  2539. Eventsize = 2
  2540. Next scheduled internal transition at time inf
  2541. __ Current Time: 135.62 __________________________________________
  2542. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2543. Input Port Configuration:
  2544. port <inport>:
  2545. Eventsize = 2
  2546. New State: 0.3
  2547. Next scheduled internal transition at time 135.92
  2548. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2549. New State: inf
  2550. Output Port Configuration:
  2551. port <outport>:
  2552. Eventsize = 2
  2553. Next scheduled internal transition at time inf
  2554. __ Current Time: 135.66 __________________________________________
  2555. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2556. Input Port Configuration:
  2557. port <inport>:
  2558. Eventsize = 2
  2559. New State: 0.66
  2560. Next scheduled internal transition at time 136.32
  2561. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2562. New State: inf
  2563. Output Port Configuration:
  2564. port <outport>:
  2565. Eventsize = 2
  2566. Next scheduled internal transition at time inf
  2567. __ Current Time: 135.92 __________________________________________
  2568. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2569. Input Port Configuration:
  2570. port <inport>:
  2571. Eventsize = 2
  2572. New State: 0.3
  2573. Next scheduled internal transition at time 136.22
  2574. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2575. New State: inf
  2576. Output Port Configuration:
  2577. port <outport>:
  2578. Eventsize = 2
  2579. Next scheduled internal transition at time inf
  2580. __ Current Time: 136.00 __________________________________________
  2581. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2582. Input Port Configuration:
  2583. port <inport>:
  2584. Eventsize = 2
  2585. New State: 0.66
  2586. Next scheduled internal transition at time 136.66
  2587. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2588. New State: 1.0
  2589. Output Port Configuration:
  2590. port <outport>:
  2591. Eventsize = 2
  2592. Next scheduled internal transition at time 137.00
  2593. __ Current Time: 136.22 __________________________________________
  2594. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2595. New State: inf
  2596. Output Port Configuration:
  2597. port <outport>:
  2598. Eventsize = 2
  2599. Next scheduled internal transition at time inf
  2600. __ Current Time: 136.32 __________________________________________
  2601. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2602. Input Port Configuration:
  2603. port <inport>:
  2604. Eventsize = 2
  2605. New State: 0.3
  2606. Next scheduled internal transition at time 136.62
  2607. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2608. New State: inf
  2609. Output Port Configuration:
  2610. port <outport>:
  2611. Eventsize = 2
  2612. Next scheduled internal transition at time inf
  2613. __ Current Time: 136.62 __________________________________________
  2614. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2615. Input Port Configuration:
  2616. port <inport>:
  2617. Eventsize = 2
  2618. New State: 0.3
  2619. Next scheduled internal transition at time 136.92
  2620. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2621. New State: inf
  2622. Output Port Configuration:
  2623. port <outport>:
  2624. Eventsize = 2
  2625. Next scheduled internal transition at time inf
  2626. __ Current Time: 136.66 __________________________________________
  2627. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2628. Input Port Configuration:
  2629. port <inport>:
  2630. Eventsize = 2
  2631. New State: 0.66
  2632. Next scheduled internal transition at time 137.32
  2633. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2634. New State: inf
  2635. Output Port Configuration:
  2636. port <outport>:
  2637. Eventsize = 2
  2638. Next scheduled internal transition at time inf
  2639. __ Current Time: 136.92 __________________________________________
  2640. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2641. Input Port Configuration:
  2642. port <inport>:
  2643. Eventsize = 2
  2644. New State: 0.3
  2645. Next scheduled internal transition at time 137.22
  2646. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2647. New State: inf
  2648. Output Port Configuration:
  2649. port <outport>:
  2650. Eventsize = 2
  2651. Next scheduled internal transition at time inf
  2652. __ Current Time: 137.00 __________________________________________
  2653. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2654. Input Port Configuration:
  2655. port <inport>:
  2656. Eventsize = 2
  2657. New State: 0.66
  2658. Next scheduled internal transition at time 137.66
  2659. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2660. New State: 1.0
  2661. Output Port Configuration:
  2662. port <outport>:
  2663. Eventsize = 2
  2664. Next scheduled internal transition at time 138.00
  2665. __ Current Time: 137.22 __________________________________________
  2666. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2667. New State: inf
  2668. Output Port Configuration:
  2669. port <outport>:
  2670. Eventsize = 2
  2671. Next scheduled internal transition at time inf
  2672. __ Current Time: 137.32 __________________________________________
  2673. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2674. Input Port Configuration:
  2675. port <inport>:
  2676. Eventsize = 2
  2677. New State: 0.3
  2678. Next scheduled internal transition at time 137.62
  2679. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2680. New State: inf
  2681. Output Port Configuration:
  2682. port <outport>:
  2683. Eventsize = 2
  2684. Next scheduled internal transition at time inf
  2685. __ Current Time: 137.62 __________________________________________
  2686. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2687. Input Port Configuration:
  2688. port <inport>:
  2689. Eventsize = 2
  2690. New State: 0.3
  2691. Next scheduled internal transition at time 137.92
  2692. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2693. New State: inf
  2694. Output Port Configuration:
  2695. port <outport>:
  2696. Eventsize = 2
  2697. Next scheduled internal transition at time inf
  2698. __ Current Time: 137.66 __________________________________________
  2699. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2700. Input Port Configuration:
  2701. port <inport>:
  2702. Eventsize = 2
  2703. New State: 0.66
  2704. Next scheduled internal transition at time 138.32
  2705. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2706. New State: inf
  2707. Output Port Configuration:
  2708. port <outport>:
  2709. Eventsize = 2
  2710. Next scheduled internal transition at time inf
  2711. __ Current Time: 137.92 __________________________________________
  2712. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2713. Input Port Configuration:
  2714. port <inport>:
  2715. Eventsize = 2
  2716. New State: 0.3
  2717. Next scheduled internal transition at time 138.22
  2718. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2719. New State: inf
  2720. Output Port Configuration:
  2721. port <outport>:
  2722. Eventsize = 2
  2723. Next scheduled internal transition at time inf
  2724. __ Current Time: 138.00 __________________________________________
  2725. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2726. Input Port Configuration:
  2727. port <inport>:
  2728. Eventsize = 2
  2729. New State: 0.66
  2730. Next scheduled internal transition at time 138.66
  2731. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2732. New State: 1.0
  2733. Output Port Configuration:
  2734. port <outport>:
  2735. Eventsize = 2
  2736. Next scheduled internal transition at time 139.00
  2737. __ Current Time: 138.22 __________________________________________
  2738. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2739. New State: inf
  2740. Output Port Configuration:
  2741. port <outport>:
  2742. Eventsize = 2
  2743. Next scheduled internal transition at time inf
  2744. __ Current Time: 138.32 __________________________________________
  2745. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2746. Input Port Configuration:
  2747. port <inport>:
  2748. Eventsize = 2
  2749. New State: 0.3
  2750. Next scheduled internal transition at time 138.62
  2751. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2752. New State: inf
  2753. Output Port Configuration:
  2754. port <outport>:
  2755. Eventsize = 2
  2756. Next scheduled internal transition at time inf
  2757. __ Current Time: 138.62 __________________________________________
  2758. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2759. Input Port Configuration:
  2760. port <inport>:
  2761. Eventsize = 2
  2762. New State: 0.3
  2763. Next scheduled internal transition at time 138.92
  2764. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2765. New State: inf
  2766. Output Port Configuration:
  2767. port <outport>:
  2768. Eventsize = 2
  2769. Next scheduled internal transition at time inf
  2770. __ Current Time: 138.66 __________________________________________
  2771. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2772. Input Port Configuration:
  2773. port <inport>:
  2774. Eventsize = 2
  2775. New State: 0.66
  2776. Next scheduled internal transition at time 139.32
  2777. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2778. New State: inf
  2779. Output Port Configuration:
  2780. port <outport>:
  2781. Eventsize = 2
  2782. Next scheduled internal transition at time inf
  2783. __ Current Time: 138.92 __________________________________________
  2784. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2785. Input Port Configuration:
  2786. port <inport>:
  2787. Eventsize = 2
  2788. New State: 0.3
  2789. Next scheduled internal transition at time 139.22
  2790. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2791. New State: inf
  2792. Output Port Configuration:
  2793. port <outport>:
  2794. Eventsize = 2
  2795. Next scheduled internal transition at time inf
  2796. __ Current Time: 139.00 __________________________________________
  2797. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2798. Input Port Configuration:
  2799. port <inport>:
  2800. Eventsize = 2
  2801. New State: 0.66
  2802. Next scheduled internal transition at time 139.66
  2803. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2804. New State: 1.0
  2805. Output Port Configuration:
  2806. port <outport>:
  2807. Eventsize = 2
  2808. Next scheduled internal transition at time 140.00
  2809. __ Current Time: 139.22 __________________________________________
  2810. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2811. New State: inf
  2812. Output Port Configuration:
  2813. port <outport>:
  2814. Eventsize = 2
  2815. Next scheduled internal transition at time inf
  2816. __ Current Time: 139.32 __________________________________________
  2817. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2818. Input Port Configuration:
  2819. port <inport>:
  2820. Eventsize = 2
  2821. New State: 0.3
  2822. Next scheduled internal transition at time 139.62
  2823. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2824. New State: inf
  2825. Output Port Configuration:
  2826. port <outport>:
  2827. Eventsize = 2
  2828. Next scheduled internal transition at time inf
  2829. __ Current Time: 139.62 __________________________________________
  2830. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2831. Input Port Configuration:
  2832. port <inport>:
  2833. Eventsize = 2
  2834. New State: 0.3
  2835. Next scheduled internal transition at time 139.92
  2836. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2837. New State: inf
  2838. Output Port Configuration:
  2839. port <outport>:
  2840. Eventsize = 2
  2841. Next scheduled internal transition at time inf
  2842. __ Current Time: 139.66 __________________________________________
  2843. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2844. Input Port Configuration:
  2845. port <inport>:
  2846. Eventsize = 2
  2847. New State: 0.66
  2848. Next scheduled internal transition at time 140.32
  2849. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2850. New State: inf
  2851. Output Port Configuration:
  2852. port <outport>:
  2853. Eventsize = 2
  2854. Next scheduled internal transition at time inf
  2855. __ Current Time: 139.92 __________________________________________
  2856. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2857. Input Port Configuration:
  2858. port <inport>:
  2859. Eventsize = 2
  2860. New State: 0.3
  2861. Next scheduled internal transition at time 140.22
  2862. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2863. New State: inf
  2864. Output Port Configuration:
  2865. port <outport>:
  2866. Eventsize = 2
  2867. Next scheduled internal transition at time inf
  2868. __ Current Time: 140.00 __________________________________________
  2869. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2870. Input Port Configuration:
  2871. port <inport>:
  2872. Eventsize = 2
  2873. New State: 0.66
  2874. Next scheduled internal transition at time 140.66
  2875. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2876. New State: 1.0
  2877. Output Port Configuration:
  2878. port <outport>:
  2879. Eventsize = 2
  2880. Next scheduled internal transition at time 141.00
  2881. __ Current Time: 140.22 __________________________________________
  2882. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2883. New State: inf
  2884. Output Port Configuration:
  2885. port <outport>:
  2886. Eventsize = 2
  2887. Next scheduled internal transition at time inf
  2888. __ Current Time: 140.32 __________________________________________
  2889. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2890. Input Port Configuration:
  2891. port <inport>:
  2892. Eventsize = 2
  2893. New State: 0.3
  2894. Next scheduled internal transition at time 140.62
  2895. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2896. New State: inf
  2897. Output Port Configuration:
  2898. port <outport>:
  2899. Eventsize = 2
  2900. Next scheduled internal transition at time inf
  2901. __ Current Time: 140.62 __________________________________________
  2902. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2903. Input Port Configuration:
  2904. port <inport>:
  2905. Eventsize = 2
  2906. New State: 0.3
  2907. Next scheduled internal transition at time 140.92
  2908. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2909. New State: inf
  2910. Output Port Configuration:
  2911. port <outport>:
  2912. Eventsize = 2
  2913. Next scheduled internal transition at time inf
  2914. __ Current Time: 140.66 __________________________________________
  2915. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2916. Input Port Configuration:
  2917. port <inport>:
  2918. Eventsize = 2
  2919. New State: 0.66
  2920. Next scheduled internal transition at time 141.32
  2921. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2922. New State: inf
  2923. Output Port Configuration:
  2924. port <outport>:
  2925. Eventsize = 2
  2926. Next scheduled internal transition at time inf
  2927. __ Current Time: 140.92 __________________________________________
  2928. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2929. Input Port Configuration:
  2930. port <inport>:
  2931. Eventsize = 2
  2932. New State: 0.3
  2933. Next scheduled internal transition at time 141.22
  2934. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2935. New State: inf
  2936. Output Port Configuration:
  2937. port <outport>:
  2938. Eventsize = 2
  2939. Next scheduled internal transition at time inf
  2940. __ Current Time: 141.00 __________________________________________
  2941. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2942. Input Port Configuration:
  2943. port <inport>:
  2944. Eventsize = 2
  2945. New State: 0.66
  2946. Next scheduled internal transition at time 141.66
  2947. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  2948. New State: 1.0
  2949. Output Port Configuration:
  2950. port <outport>:
  2951. Eventsize = 2
  2952. Next scheduled internal transition at time 142.00
  2953. __ Current Time: 141.22 __________________________________________
  2954. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  2955. New State: inf
  2956. Output Port Configuration:
  2957. port <outport>:
  2958. Eventsize = 2
  2959. Next scheduled internal transition at time inf
  2960. __ Current Time: 141.32 __________________________________________
  2961. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2962. Input Port Configuration:
  2963. port <inport>:
  2964. Eventsize = 2
  2965. New State: 0.3
  2966. Next scheduled internal transition at time 141.62
  2967. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2968. New State: inf
  2969. Output Port Configuration:
  2970. port <outport>:
  2971. Eventsize = 2
  2972. Next scheduled internal transition at time inf
  2973. __ Current Time: 141.62 __________________________________________
  2974. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  2975. Input Port Configuration:
  2976. port <inport>:
  2977. Eventsize = 2
  2978. New State: 0.3
  2979. Next scheduled internal transition at time 141.92
  2980. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  2981. New State: inf
  2982. Output Port Configuration:
  2983. port <outport>:
  2984. Eventsize = 2
  2985. Next scheduled internal transition at time inf
  2986. __ Current Time: 141.66 __________________________________________
  2987. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  2988. Input Port Configuration:
  2989. port <inport>:
  2990. Eventsize = 2
  2991. New State: 0.66
  2992. Next scheduled internal transition at time 142.32
  2993. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  2994. New State: inf
  2995. Output Port Configuration:
  2996. port <outport>:
  2997. Eventsize = 2
  2998. Next scheduled internal transition at time inf
  2999. __ Current Time: 141.92 __________________________________________
  3000. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3001. Input Port Configuration:
  3002. port <inport>:
  3003. Eventsize = 2
  3004. New State: 0.3
  3005. Next scheduled internal transition at time 142.22
  3006. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3007. New State: inf
  3008. Output Port Configuration:
  3009. port <outport>:
  3010. Eventsize = 2
  3011. Next scheduled internal transition at time inf
  3012. __ Current Time: 142.00 __________________________________________
  3013. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3014. Input Port Configuration:
  3015. port <inport>:
  3016. Eventsize = 2
  3017. New State: 0.66
  3018. Next scheduled internal transition at time 142.66
  3019. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3020. New State: 1.0
  3021. Output Port Configuration:
  3022. port <outport>:
  3023. Eventsize = 2
  3024. Next scheduled internal transition at time 143.00
  3025. __ Current Time: 142.22 __________________________________________
  3026. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3027. New State: inf
  3028. Output Port Configuration:
  3029. port <outport>:
  3030. Eventsize = 2
  3031. Next scheduled internal transition at time inf
  3032. __ Current Time: 142.32 __________________________________________
  3033. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3034. Input Port Configuration:
  3035. port <inport>:
  3036. Eventsize = 2
  3037. New State: 0.3
  3038. Next scheduled internal transition at time 142.62
  3039. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3040. New State: inf
  3041. Output Port Configuration:
  3042. port <outport>:
  3043. Eventsize = 2
  3044. Next scheduled internal transition at time inf
  3045. __ Current Time: 142.62 __________________________________________
  3046. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3047. Input Port Configuration:
  3048. port <inport>:
  3049. Eventsize = 2
  3050. New State: 0.3
  3051. Next scheduled internal transition at time 142.92
  3052. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3053. New State: inf
  3054. Output Port Configuration:
  3055. port <outport>:
  3056. Eventsize = 2
  3057. Next scheduled internal transition at time inf
  3058. __ Current Time: 142.66 __________________________________________
  3059. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3060. Input Port Configuration:
  3061. port <inport>:
  3062. Eventsize = 2
  3063. New State: 0.66
  3064. Next scheduled internal transition at time 143.32
  3065. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3066. New State: inf
  3067. Output Port Configuration:
  3068. port <outport>:
  3069. Eventsize = 2
  3070. Next scheduled internal transition at time inf
  3071. __ Current Time: 142.92 __________________________________________
  3072. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3073. Input Port Configuration:
  3074. port <inport>:
  3075. Eventsize = 2
  3076. New State: 0.3
  3077. Next scheduled internal transition at time 143.22
  3078. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3079. New State: inf
  3080. Output Port Configuration:
  3081. port <outport>:
  3082. Eventsize = 2
  3083. Next scheduled internal transition at time inf
  3084. __ Current Time: 143.00 __________________________________________
  3085. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3086. Input Port Configuration:
  3087. port <inport>:
  3088. Eventsize = 2
  3089. New State: 0.66
  3090. Next scheduled internal transition at time 143.66
  3091. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3092. New State: 1.0
  3093. Output Port Configuration:
  3094. port <outport>:
  3095. Eventsize = 2
  3096. Next scheduled internal transition at time 144.00
  3097. __ Current Time: 143.22 __________________________________________
  3098. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3099. New State: inf
  3100. Output Port Configuration:
  3101. port <outport>:
  3102. Eventsize = 2
  3103. Next scheduled internal transition at time inf
  3104. __ Current Time: 143.32 __________________________________________
  3105. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3106. Input Port Configuration:
  3107. port <inport>:
  3108. Eventsize = 2
  3109. New State: 0.3
  3110. Next scheduled internal transition at time 143.62
  3111. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3112. New State: inf
  3113. Output Port Configuration:
  3114. port <outport>:
  3115. Eventsize = 2
  3116. Next scheduled internal transition at time inf
  3117. __ Current Time: 143.62 __________________________________________
  3118. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3119. Input Port Configuration:
  3120. port <inport>:
  3121. Eventsize = 2
  3122. New State: 0.3
  3123. Next scheduled internal transition at time 143.92
  3124. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3125. New State: inf
  3126. Output Port Configuration:
  3127. port <outport>:
  3128. Eventsize = 2
  3129. Next scheduled internal transition at time inf
  3130. __ Current Time: 143.66 __________________________________________
  3131. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3132. Input Port Configuration:
  3133. port <inport>:
  3134. Eventsize = 2
  3135. New State: 0.66
  3136. Next scheduled internal transition at time 144.32
  3137. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3138. New State: inf
  3139. Output Port Configuration:
  3140. port <outport>:
  3141. Eventsize = 2
  3142. Next scheduled internal transition at time inf
  3143. __ Current Time: 143.92 __________________________________________
  3144. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3145. Input Port Configuration:
  3146. port <inport>:
  3147. Eventsize = 2
  3148. New State: 0.3
  3149. Next scheduled internal transition at time 144.22
  3150. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3151. New State: inf
  3152. Output Port Configuration:
  3153. port <outport>:
  3154. Eventsize = 2
  3155. Next scheduled internal transition at time inf
  3156. __ Current Time: 144.00 __________________________________________
  3157. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3158. Input Port Configuration:
  3159. port <inport>:
  3160. Eventsize = 2
  3161. New State: 0.66
  3162. Next scheduled internal transition at time 144.66
  3163. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3164. New State: 1.0
  3165. Output Port Configuration:
  3166. port <outport>:
  3167. Eventsize = 2
  3168. Next scheduled internal transition at time 145.00
  3169. __ Current Time: 144.22 __________________________________________
  3170. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3171. New State: inf
  3172. Output Port Configuration:
  3173. port <outport>:
  3174. Eventsize = 2
  3175. Next scheduled internal transition at time inf
  3176. __ Current Time: 144.32 __________________________________________
  3177. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3178. Input Port Configuration:
  3179. port <inport>:
  3180. Eventsize = 2
  3181. New State: 0.3
  3182. Next scheduled internal transition at time 144.62
  3183. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3184. New State: inf
  3185. Output Port Configuration:
  3186. port <outport>:
  3187. Eventsize = 2
  3188. Next scheduled internal transition at time inf
  3189. __ Current Time: 144.62 __________________________________________
  3190. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3191. Input Port Configuration:
  3192. port <inport>:
  3193. Eventsize = 2
  3194. New State: 0.3
  3195. Next scheduled internal transition at time 144.92
  3196. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3197. New State: inf
  3198. Output Port Configuration:
  3199. port <outport>:
  3200. Eventsize = 2
  3201. Next scheduled internal transition at time inf
  3202. __ Current Time: 144.66 __________________________________________
  3203. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3204. Input Port Configuration:
  3205. port <inport>:
  3206. Eventsize = 2
  3207. New State: 0.66
  3208. Next scheduled internal transition at time 145.32
  3209. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3210. New State: inf
  3211. Output Port Configuration:
  3212. port <outport>:
  3213. Eventsize = 2
  3214. Next scheduled internal transition at time inf
  3215. __ Current Time: 144.92 __________________________________________
  3216. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3217. Input Port Configuration:
  3218. port <inport>:
  3219. Eventsize = 2
  3220. New State: 0.3
  3221. Next scheduled internal transition at time 145.22
  3222. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3223. New State: inf
  3224. Output Port Configuration:
  3225. port <outport>:
  3226. Eventsize = 2
  3227. Next scheduled internal transition at time inf
  3228. __ Current Time: 145.00 __________________________________________
  3229. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3230. Input Port Configuration:
  3231. port <inport>:
  3232. Eventsize = 2
  3233. New State: 0.66
  3234. Next scheduled internal transition at time 145.66
  3235. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3236. New State: 1.0
  3237. Output Port Configuration:
  3238. port <outport>:
  3239. Eventsize = 2
  3240. Next scheduled internal transition at time 146.00
  3241. __ Current Time: 145.22 __________________________________________
  3242. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3243. New State: inf
  3244. Output Port Configuration:
  3245. port <outport>:
  3246. Eventsize = 2
  3247. Next scheduled internal transition at time inf
  3248. __ Current Time: 145.32 __________________________________________
  3249. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3250. Input Port Configuration:
  3251. port <inport>:
  3252. Eventsize = 2
  3253. New State: 0.3
  3254. Next scheduled internal transition at time 145.62
  3255. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3256. New State: inf
  3257. Output Port Configuration:
  3258. port <outport>:
  3259. Eventsize = 2
  3260. Next scheduled internal transition at time inf
  3261. __ Current Time: 145.62 __________________________________________
  3262. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3263. Input Port Configuration:
  3264. port <inport>:
  3265. Eventsize = 2
  3266. New State: 0.3
  3267. Next scheduled internal transition at time 145.92
  3268. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3269. New State: inf
  3270. Output Port Configuration:
  3271. port <outport>:
  3272. Eventsize = 2
  3273. Next scheduled internal transition at time inf
  3274. __ Current Time: 145.66 __________________________________________
  3275. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3276. Input Port Configuration:
  3277. port <inport>:
  3278. Eventsize = 2
  3279. New State: 0.66
  3280. Next scheduled internal transition at time 146.32
  3281. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3282. New State: inf
  3283. Output Port Configuration:
  3284. port <outport>:
  3285. Eventsize = 2
  3286. Next scheduled internal transition at time inf
  3287. __ Current Time: 145.92 __________________________________________
  3288. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3289. Input Port Configuration:
  3290. port <inport>:
  3291. Eventsize = 2
  3292. New State: 0.3
  3293. Next scheduled internal transition at time 146.22
  3294. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3295. New State: inf
  3296. Output Port Configuration:
  3297. port <outport>:
  3298. Eventsize = 2
  3299. Next scheduled internal transition at time inf
  3300. __ Current Time: 146.00 __________________________________________
  3301. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3302. Input Port Configuration:
  3303. port <inport>:
  3304. Eventsize = 2
  3305. New State: 0.66
  3306. Next scheduled internal transition at time 146.66
  3307. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3308. New State: 1.0
  3309. Output Port Configuration:
  3310. port <outport>:
  3311. Eventsize = 2
  3312. Next scheduled internal transition at time 147.00
  3313. __ Current Time: 146.22 __________________________________________
  3314. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3315. New State: inf
  3316. Output Port Configuration:
  3317. port <outport>:
  3318. Eventsize = 2
  3319. Next scheduled internal transition at time inf
  3320. __ Current Time: 146.32 __________________________________________
  3321. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3322. Input Port Configuration:
  3323. port <inport>:
  3324. Eventsize = 2
  3325. New State: 0.3
  3326. Next scheduled internal transition at time 146.62
  3327. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3328. New State: inf
  3329. Output Port Configuration:
  3330. port <outport>:
  3331. Eventsize = 2
  3332. Next scheduled internal transition at time inf
  3333. __ Current Time: 146.62 __________________________________________
  3334. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3335. Input Port Configuration:
  3336. port <inport>:
  3337. Eventsize = 2
  3338. New State: 0.3
  3339. Next scheduled internal transition at time 146.92
  3340. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3341. New State: inf
  3342. Output Port Configuration:
  3343. port <outport>:
  3344. Eventsize = 2
  3345. Next scheduled internal transition at time inf
  3346. __ Current Time: 146.66 __________________________________________
  3347. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3348. Input Port Configuration:
  3349. port <inport>:
  3350. Eventsize = 2
  3351. New State: 0.66
  3352. Next scheduled internal transition at time 147.32
  3353. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3354. New State: inf
  3355. Output Port Configuration:
  3356. port <outport>:
  3357. Eventsize = 2
  3358. Next scheduled internal transition at time inf
  3359. __ Current Time: 146.92 __________________________________________
  3360. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3361. Input Port Configuration:
  3362. port <inport>:
  3363. Eventsize = 2
  3364. New State: 0.3
  3365. Next scheduled internal transition at time 147.22
  3366. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3367. New State: inf
  3368. Output Port Configuration:
  3369. port <outport>:
  3370. Eventsize = 2
  3371. Next scheduled internal transition at time inf
  3372. __ Current Time: 147.00 __________________________________________
  3373. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3374. Input Port Configuration:
  3375. port <inport>:
  3376. Eventsize = 2
  3377. New State: 0.66
  3378. Next scheduled internal transition at time 147.66
  3379. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3380. New State: 1.0
  3381. Output Port Configuration:
  3382. port <outport>:
  3383. Eventsize = 2
  3384. Next scheduled internal transition at time 148.00
  3385. __ Current Time: 147.22 __________________________________________
  3386. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3387. New State: inf
  3388. Output Port Configuration:
  3389. port <outport>:
  3390. Eventsize = 2
  3391. Next scheduled internal transition at time inf
  3392. __ Current Time: 147.32 __________________________________________
  3393. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3394. Input Port Configuration:
  3395. port <inport>:
  3396. Eventsize = 2
  3397. New State: 0.3
  3398. Next scheduled internal transition at time 147.62
  3399. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3400. New State: inf
  3401. Output Port Configuration:
  3402. port <outport>:
  3403. Eventsize = 2
  3404. Next scheduled internal transition at time inf
  3405. __ Current Time: 147.62 __________________________________________
  3406. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3407. Input Port Configuration:
  3408. port <inport>:
  3409. Eventsize = 2
  3410. New State: 0.3
  3411. Next scheduled internal transition at time 147.92
  3412. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3413. New State: inf
  3414. Output Port Configuration:
  3415. port <outport>:
  3416. Eventsize = 2
  3417. Next scheduled internal transition at time inf
  3418. __ Current Time: 147.66 __________________________________________
  3419. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3420. Input Port Configuration:
  3421. port <inport>:
  3422. Eventsize = 2
  3423. New State: 0.66
  3424. Next scheduled internal transition at time 148.32
  3425. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3426. New State: inf
  3427. Output Port Configuration:
  3428. port <outport>:
  3429. Eventsize = 2
  3430. Next scheduled internal transition at time inf
  3431. __ Current Time: 147.92 __________________________________________
  3432. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3433. Input Port Configuration:
  3434. port <inport>:
  3435. Eventsize = 2
  3436. New State: 0.3
  3437. Next scheduled internal transition at time 148.22
  3438. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3439. New State: inf
  3440. Output Port Configuration:
  3441. port <outport>:
  3442. Eventsize = 2
  3443. Next scheduled internal transition at time inf
  3444. __ Current Time: 148.00 __________________________________________
  3445. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3446. Input Port Configuration:
  3447. port <inport>:
  3448. Eventsize = 2
  3449. New State: 0.66
  3450. Next scheduled internal transition at time 148.66
  3451. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3452. New State: 1.0
  3453. Output Port Configuration:
  3454. port <outport>:
  3455. Eventsize = 2
  3456. Next scheduled internal transition at time 149.00
  3457. __ Current Time: 148.22 __________________________________________
  3458. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3459. New State: inf
  3460. Output Port Configuration:
  3461. port <outport>:
  3462. Eventsize = 2
  3463. Next scheduled internal transition at time inf
  3464. __ Current Time: 148.32 __________________________________________
  3465. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3466. Input Port Configuration:
  3467. port <inport>:
  3468. Eventsize = 2
  3469. New State: 0.3
  3470. Next scheduled internal transition at time 148.62
  3471. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3472. New State: inf
  3473. Output Port Configuration:
  3474. port <outport>:
  3475. Eventsize = 2
  3476. Next scheduled internal transition at time inf
  3477. __ Current Time: 148.62 __________________________________________
  3478. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3479. Input Port Configuration:
  3480. port <inport>:
  3481. Eventsize = 2
  3482. New State: 0.3
  3483. Next scheduled internal transition at time 148.92
  3484. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3485. New State: inf
  3486. Output Port Configuration:
  3487. port <outport>:
  3488. Eventsize = 2
  3489. Next scheduled internal transition at time inf
  3490. __ Current Time: 148.66 __________________________________________
  3491. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3492. Input Port Configuration:
  3493. port <inport>:
  3494. Eventsize = 2
  3495. New State: 0.66
  3496. Next scheduled internal transition at time 149.32
  3497. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3498. New State: inf
  3499. Output Port Configuration:
  3500. port <outport>:
  3501. Eventsize = 2
  3502. Next scheduled internal transition at time inf
  3503. __ Current Time: 148.92 __________________________________________
  3504. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3505. Input Port Configuration:
  3506. port <inport>:
  3507. Eventsize = 2
  3508. New State: 0.3
  3509. Next scheduled internal transition at time 149.22
  3510. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3511. New State: inf
  3512. Output Port Configuration:
  3513. port <outport>:
  3514. Eventsize = 2
  3515. Next scheduled internal transition at time inf
  3516. __ Current Time: 149.00 __________________________________________
  3517. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3518. Input Port Configuration:
  3519. port <inport>:
  3520. Eventsize = 2
  3521. New State: 0.66
  3522. Next scheduled internal transition at time 149.66
  3523. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3524. New State: 1.0
  3525. Output Port Configuration:
  3526. port <outport>:
  3527. Eventsize = 2
  3528. Next scheduled internal transition at time 150.00
  3529. __ Current Time: 149.22 __________________________________________
  3530. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3531. New State: inf
  3532. Output Port Configuration:
  3533. port <outport>:
  3534. Eventsize = 2
  3535. Next scheduled internal transition at time inf
  3536. __ Current Time: 149.32 __________________________________________
  3537. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3538. Input Port Configuration:
  3539. port <inport>:
  3540. Eventsize = 2
  3541. New State: 0.3
  3542. Next scheduled internal transition at time 149.62
  3543. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3544. New State: inf
  3545. Output Port Configuration:
  3546. port <outport>:
  3547. Eventsize = 2
  3548. Next scheduled internal transition at time inf
  3549. __ Current Time: 149.62 __________________________________________
  3550. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3551. Input Port Configuration:
  3552. port <inport>:
  3553. Eventsize = 2
  3554. New State: 0.3
  3555. Next scheduled internal transition at time 149.92
  3556. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3557. New State: inf
  3558. Output Port Configuration:
  3559. port <outport>:
  3560. Eventsize = 2
  3561. Next scheduled internal transition at time inf
  3562. __ Current Time: 149.66 __________________________________________
  3563. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3564. Input Port Configuration:
  3565. port <inport>:
  3566. Eventsize = 2
  3567. New State: 0.66
  3568. Next scheduled internal transition at time 150.32
  3569. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3570. New State: inf
  3571. Output Port Configuration:
  3572. port <outport>:
  3573. Eventsize = 2
  3574. Next scheduled internal transition at time inf
  3575. __ Current Time: 149.92 __________________________________________
  3576. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3577. Input Port Configuration:
  3578. port <inport>:
  3579. Eventsize = 2
  3580. New State: 0.3
  3581. Next scheduled internal transition at time 150.22
  3582. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3583. New State: inf
  3584. Output Port Configuration:
  3585. port <outport>:
  3586. Eventsize = 2
  3587. Next scheduled internal transition at time inf
  3588. __ Current Time: 150.00 __________________________________________
  3589. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3590. Input Port Configuration:
  3591. port <inport>:
  3592. Eventsize = 2
  3593. New State: 0.66
  3594. Next scheduled internal transition at time 150.66
  3595. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3596. New State: 1.0
  3597. Output Port Configuration:
  3598. port <outport>:
  3599. Eventsize = 2
  3600. Next scheduled internal transition at time 151.00
  3601. __ Current Time: 150.22 __________________________________________
  3602. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3603. New State: inf
  3604. Output Port Configuration:
  3605. port <outport>:
  3606. Eventsize = 2
  3607. Next scheduled internal transition at time inf
  3608. __ Current Time: 150.32 __________________________________________
  3609. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3610. Input Port Configuration:
  3611. port <inport>:
  3612. Eventsize = 2
  3613. New State: 0.3
  3614. Next scheduled internal transition at time 150.62
  3615. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3616. New State: inf
  3617. Output Port Configuration:
  3618. port <outport>:
  3619. Eventsize = 2
  3620. Next scheduled internal transition at time inf
  3621. __ Current Time: 150.62 __________________________________________
  3622. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3623. Input Port Configuration:
  3624. port <inport>:
  3625. Eventsize = 2
  3626. New State: 0.3
  3627. Next scheduled internal transition at time 150.92
  3628. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3629. New State: inf
  3630. Output Port Configuration:
  3631. port <outport>:
  3632. Eventsize = 2
  3633. Next scheduled internal transition at time inf
  3634. __ Current Time: 150.66 __________________________________________
  3635. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3636. Input Port Configuration:
  3637. port <inport>:
  3638. Eventsize = 2
  3639. New State: 0.66
  3640. Next scheduled internal transition at time 151.32
  3641. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3642. New State: inf
  3643. Output Port Configuration:
  3644. port <outport>:
  3645. Eventsize = 2
  3646. Next scheduled internal transition at time inf
  3647. __ Current Time: 150.92 __________________________________________
  3648. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3649. Input Port Configuration:
  3650. port <inport>:
  3651. Eventsize = 2
  3652. New State: 0.3
  3653. Next scheduled internal transition at time 151.22
  3654. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3655. New State: inf
  3656. Output Port Configuration:
  3657. port <outport>:
  3658. Eventsize = 2
  3659. Next scheduled internal transition at time inf
  3660. __ Current Time: 151.00 __________________________________________
  3661. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3662. Input Port Configuration:
  3663. port <inport>:
  3664. Eventsize = 2
  3665. New State: 0.66
  3666. Next scheduled internal transition at time 151.66
  3667. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3668. New State: 1.0
  3669. Output Port Configuration:
  3670. port <outport>:
  3671. Eventsize = 2
  3672. Next scheduled internal transition at time 152.00
  3673. __ Current Time: 151.22 __________________________________________
  3674. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3675. New State: inf
  3676. Output Port Configuration:
  3677. port <outport>:
  3678. Eventsize = 2
  3679. Next scheduled internal transition at time inf
  3680. __ Current Time: 151.32 __________________________________________
  3681. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3682. Input Port Configuration:
  3683. port <inport>:
  3684. Eventsize = 2
  3685. New State: 0.3
  3686. Next scheduled internal transition at time 151.62
  3687. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3688. New State: inf
  3689. Output Port Configuration:
  3690. port <outport>:
  3691. Eventsize = 2
  3692. Next scheduled internal transition at time inf
  3693. __ Current Time: 151.62 __________________________________________
  3694. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3695. Input Port Configuration:
  3696. port <inport>:
  3697. Eventsize = 2
  3698. New State: 0.3
  3699. Next scheduled internal transition at time 151.92
  3700. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3701. New State: inf
  3702. Output Port Configuration:
  3703. port <outport>:
  3704. Eventsize = 2
  3705. Next scheduled internal transition at time inf
  3706. __ Current Time: 151.66 __________________________________________
  3707. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3708. Input Port Configuration:
  3709. port <inport>:
  3710. Eventsize = 2
  3711. New State: 0.66
  3712. Next scheduled internal transition at time 152.32
  3713. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3714. New State: inf
  3715. Output Port Configuration:
  3716. port <outport>:
  3717. Eventsize = 2
  3718. Next scheduled internal transition at time inf
  3719. __ Current Time: 151.92 __________________________________________
  3720. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3721. Input Port Configuration:
  3722. port <inport>:
  3723. Eventsize = 2
  3724. New State: 0.3
  3725. Next scheduled internal transition at time 152.22
  3726. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3727. New State: inf
  3728. Output Port Configuration:
  3729. port <outport>:
  3730. Eventsize = 2
  3731. Next scheduled internal transition at time inf
  3732. __ Current Time: 152.00 __________________________________________
  3733. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3734. Input Port Configuration:
  3735. port <inport>:
  3736. Eventsize = 2
  3737. New State: 0.66
  3738. Next scheduled internal transition at time 152.66
  3739. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3740. New State: 1.0
  3741. Output Port Configuration:
  3742. port <outport>:
  3743. Eventsize = 2
  3744. Next scheduled internal transition at time 153.00
  3745. __ Current Time: 152.22 __________________________________________
  3746. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3747. New State: inf
  3748. Output Port Configuration:
  3749. port <outport>:
  3750. Eventsize = 2
  3751. Next scheduled internal transition at time inf
  3752. __ Current Time: 152.32 __________________________________________
  3753. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3754. Input Port Configuration:
  3755. port <inport>:
  3756. Eventsize = 2
  3757. New State: 0.3
  3758. Next scheduled internal transition at time 152.62
  3759. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3760. New State: inf
  3761. Output Port Configuration:
  3762. port <outport>:
  3763. Eventsize = 2
  3764. Next scheduled internal transition at time inf
  3765. __ Current Time: 152.62 __________________________________________
  3766. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3767. Input Port Configuration:
  3768. port <inport>:
  3769. Eventsize = 2
  3770. New State: 0.3
  3771. Next scheduled internal transition at time 152.92
  3772. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3773. New State: inf
  3774. Output Port Configuration:
  3775. port <outport>:
  3776. Eventsize = 2
  3777. Next scheduled internal transition at time inf
  3778. __ Current Time: 152.66 __________________________________________
  3779. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3780. Input Port Configuration:
  3781. port <inport>:
  3782. Eventsize = 2
  3783. New State: 0.66
  3784. Next scheduled internal transition at time 153.32
  3785. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3786. New State: inf
  3787. Output Port Configuration:
  3788. port <outport>:
  3789. Eventsize = 2
  3790. Next scheduled internal transition at time inf
  3791. __ Current Time: 152.92 __________________________________________
  3792. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3793. Input Port Configuration:
  3794. port <inport>:
  3795. Eventsize = 2
  3796. New State: 0.3
  3797. Next scheduled internal transition at time 153.22
  3798. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3799. New State: inf
  3800. Output Port Configuration:
  3801. port <outport>:
  3802. Eventsize = 2
  3803. Next scheduled internal transition at time inf
  3804. __ Current Time: 153.00 __________________________________________
  3805. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3806. Input Port Configuration:
  3807. port <inport>:
  3808. Eventsize = 2
  3809. New State: 0.66
  3810. Next scheduled internal transition at time 153.66
  3811. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3812. New State: 1.0
  3813. Output Port Configuration:
  3814. port <outport>:
  3815. Eventsize = 2
  3816. Next scheduled internal transition at time 154.00
  3817. __ Current Time: 153.22 __________________________________________
  3818. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3819. New State: inf
  3820. Output Port Configuration:
  3821. port <outport>:
  3822. Eventsize = 2
  3823. Next scheduled internal transition at time inf
  3824. __ Current Time: 153.32 __________________________________________
  3825. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3826. Input Port Configuration:
  3827. port <inport>:
  3828. Eventsize = 2
  3829. New State: 0.3
  3830. Next scheduled internal transition at time 153.62
  3831. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3832. New State: inf
  3833. Output Port Configuration:
  3834. port <outport>:
  3835. Eventsize = 2
  3836. Next scheduled internal transition at time inf
  3837. __ Current Time: 153.62 __________________________________________
  3838. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3839. Input Port Configuration:
  3840. port <inport>:
  3841. Eventsize = 2
  3842. New State: 0.3
  3843. Next scheduled internal transition at time 153.92
  3844. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3845. New State: inf
  3846. Output Port Configuration:
  3847. port <outport>:
  3848. Eventsize = 2
  3849. Next scheduled internal transition at time inf
  3850. __ Current Time: 153.66 __________________________________________
  3851. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3852. Input Port Configuration:
  3853. port <inport>:
  3854. Eventsize = 2
  3855. New State: 0.66
  3856. Next scheduled internal transition at time 154.32
  3857. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3858. New State: inf
  3859. Output Port Configuration:
  3860. port <outport>:
  3861. Eventsize = 2
  3862. Next scheduled internal transition at time inf
  3863. __ Current Time: 153.92 __________________________________________
  3864. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3865. Input Port Configuration:
  3866. port <inport>:
  3867. Eventsize = 2
  3868. New State: 0.3
  3869. Next scheduled internal transition at time 154.22
  3870. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3871. New State: inf
  3872. Output Port Configuration:
  3873. port <outport>:
  3874. Eventsize = 2
  3875. Next scheduled internal transition at time inf
  3876. __ Current Time: 154.00 __________________________________________
  3877. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3878. Input Port Configuration:
  3879. port <inport>:
  3880. Eventsize = 2
  3881. New State: 0.66
  3882. Next scheduled internal transition at time 154.66
  3883. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3884. New State: 1.0
  3885. Output Port Configuration:
  3886. port <outport>:
  3887. Eventsize = 2
  3888. Next scheduled internal transition at time 155.00
  3889. __ Current Time: 154.22 __________________________________________
  3890. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3891. New State: inf
  3892. Output Port Configuration:
  3893. port <outport>:
  3894. Eventsize = 2
  3895. Next scheduled internal transition at time inf
  3896. __ Current Time: 154.32 __________________________________________
  3897. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3898. Input Port Configuration:
  3899. port <inport>:
  3900. Eventsize = 2
  3901. New State: 0.3
  3902. Next scheduled internal transition at time 154.62
  3903. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3904. New State: inf
  3905. Output Port Configuration:
  3906. port <outport>:
  3907. Eventsize = 2
  3908. Next scheduled internal transition at time inf
  3909. __ Current Time: 154.62 __________________________________________
  3910. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3911. Input Port Configuration:
  3912. port <inport>:
  3913. Eventsize = 2
  3914. New State: 0.3
  3915. Next scheduled internal transition at time 154.92
  3916. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3917. New State: inf
  3918. Output Port Configuration:
  3919. port <outport>:
  3920. Eventsize = 2
  3921. Next scheduled internal transition at time inf
  3922. __ Current Time: 154.66 __________________________________________
  3923. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3924. Input Port Configuration:
  3925. port <inport>:
  3926. Eventsize = 2
  3927. New State: 0.66
  3928. Next scheduled internal transition at time 155.32
  3929. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3930. New State: inf
  3931. Output Port Configuration:
  3932. port <outport>:
  3933. Eventsize = 2
  3934. Next scheduled internal transition at time inf
  3935. __ Current Time: 154.92 __________________________________________
  3936. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3937. Input Port Configuration:
  3938. port <inport>:
  3939. Eventsize = 2
  3940. New State: 0.3
  3941. Next scheduled internal transition at time 155.22
  3942. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3943. New State: inf
  3944. Output Port Configuration:
  3945. port <outport>:
  3946. Eventsize = 2
  3947. Next scheduled internal transition at time inf
  3948. __ Current Time: 155.00 __________________________________________
  3949. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  3950. Input Port Configuration:
  3951. port <inport>:
  3952. Eventsize = 2
  3953. New State: 0.66
  3954. Next scheduled internal transition at time 155.66
  3955. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  3956. New State: 1.0
  3957. Output Port Configuration:
  3958. port <outport>:
  3959. Eventsize = 2
  3960. Next scheduled internal transition at time 156.00
  3961. __ Current Time: 155.22 __________________________________________
  3962. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  3963. New State: inf
  3964. Output Port Configuration:
  3965. port <outport>:
  3966. Eventsize = 2
  3967. Next scheduled internal transition at time inf
  3968. __ Current Time: 155.32 __________________________________________
  3969. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3970. Input Port Configuration:
  3971. port <inport>:
  3972. Eventsize = 2
  3973. New State: 0.3
  3974. Next scheduled internal transition at time 155.62
  3975. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3976. New State: inf
  3977. Output Port Configuration:
  3978. port <outport>:
  3979. Eventsize = 2
  3980. Next scheduled internal transition at time inf
  3981. __ Current Time: 155.62 __________________________________________
  3982. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  3983. Input Port Configuration:
  3984. port <inport>:
  3985. Eventsize = 2
  3986. New State: 0.3
  3987. Next scheduled internal transition at time 155.92
  3988. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  3989. New State: inf
  3990. Output Port Configuration:
  3991. port <outport>:
  3992. Eventsize = 2
  3993. Next scheduled internal transition at time inf
  3994. __ Current Time: 155.66 __________________________________________
  3995. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  3996. Input Port Configuration:
  3997. port <inport>:
  3998. Eventsize = 2
  3999. New State: 0.66
  4000. Next scheduled internal transition at time 156.32
  4001. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4002. New State: inf
  4003. Output Port Configuration:
  4004. port <outport>:
  4005. Eventsize = 2
  4006. Next scheduled internal transition at time inf
  4007. __ Current Time: 155.92 __________________________________________
  4008. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4009. Input Port Configuration:
  4010. port <inport>:
  4011. Eventsize = 2
  4012. New State: 0.3
  4013. Next scheduled internal transition at time 156.22
  4014. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4015. New State: inf
  4016. Output Port Configuration:
  4017. port <outport>:
  4018. Eventsize = 2
  4019. Next scheduled internal transition at time inf
  4020. __ Current Time: 156.00 __________________________________________
  4021. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4022. Input Port Configuration:
  4023. port <inport>:
  4024. Eventsize = 2
  4025. New State: 0.66
  4026. Next scheduled internal transition at time 156.66
  4027. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4028. New State: 1.0
  4029. Output Port Configuration:
  4030. port <outport>:
  4031. Eventsize = 2
  4032. Next scheduled internal transition at time 157.00
  4033. __ Current Time: 156.22 __________________________________________
  4034. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4035. New State: inf
  4036. Output Port Configuration:
  4037. port <outport>:
  4038. Eventsize = 2
  4039. Next scheduled internal transition at time inf
  4040. __ Current Time: 156.32 __________________________________________
  4041. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4042. Input Port Configuration:
  4043. port <inport>:
  4044. Eventsize = 2
  4045. New State: 0.3
  4046. Next scheduled internal transition at time 156.62
  4047. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4048. New State: inf
  4049. Output Port Configuration:
  4050. port <outport>:
  4051. Eventsize = 2
  4052. Next scheduled internal transition at time inf
  4053. __ Current Time: 156.62 __________________________________________
  4054. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4055. Input Port Configuration:
  4056. port <inport>:
  4057. Eventsize = 2
  4058. New State: 0.3
  4059. Next scheduled internal transition at time 156.92
  4060. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4061. New State: inf
  4062. Output Port Configuration:
  4063. port <outport>:
  4064. Eventsize = 2
  4065. Next scheduled internal transition at time inf
  4066. __ Current Time: 156.66 __________________________________________
  4067. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4068. Input Port Configuration:
  4069. port <inport>:
  4070. Eventsize = 2
  4071. New State: 0.66
  4072. Next scheduled internal transition at time 157.32
  4073. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4074. New State: inf
  4075. Output Port Configuration:
  4076. port <outport>:
  4077. Eventsize = 2
  4078. Next scheduled internal transition at time inf
  4079. __ Current Time: 156.92 __________________________________________
  4080. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4081. Input Port Configuration:
  4082. port <inport>:
  4083. Eventsize = 2
  4084. New State: 0.3
  4085. Next scheduled internal transition at time 157.22
  4086. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4087. New State: inf
  4088. Output Port Configuration:
  4089. port <outport>:
  4090. Eventsize = 2
  4091. Next scheduled internal transition at time inf
  4092. __ Current Time: 157.00 __________________________________________
  4093. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4094. Input Port Configuration:
  4095. port <inport>:
  4096. Eventsize = 2
  4097. New State: 0.66
  4098. Next scheduled internal transition at time 157.66
  4099. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4100. New State: 1.0
  4101. Output Port Configuration:
  4102. port <outport>:
  4103. Eventsize = 2
  4104. Next scheduled internal transition at time 158.00
  4105. __ Current Time: 157.22 __________________________________________
  4106. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4107. New State: inf
  4108. Output Port Configuration:
  4109. port <outport>:
  4110. Eventsize = 2
  4111. Next scheduled internal transition at time inf
  4112. __ Current Time: 157.32 __________________________________________
  4113. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4114. Input Port Configuration:
  4115. port <inport>:
  4116. Eventsize = 2
  4117. New State: 0.3
  4118. Next scheduled internal transition at time 157.62
  4119. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4120. New State: inf
  4121. Output Port Configuration:
  4122. port <outport>:
  4123. Eventsize = 2
  4124. Next scheduled internal transition at time inf
  4125. __ Current Time: 157.62 __________________________________________
  4126. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4127. Input Port Configuration:
  4128. port <inport>:
  4129. Eventsize = 2
  4130. New State: 0.3
  4131. Next scheduled internal transition at time 157.92
  4132. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4133. New State: inf
  4134. Output Port Configuration:
  4135. port <outport>:
  4136. Eventsize = 2
  4137. Next scheduled internal transition at time inf
  4138. __ Current Time: 157.66 __________________________________________
  4139. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4140. Input Port Configuration:
  4141. port <inport>:
  4142. Eventsize = 2
  4143. New State: 0.66
  4144. Next scheduled internal transition at time 158.32
  4145. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4146. New State: inf
  4147. Output Port Configuration:
  4148. port <outport>:
  4149. Eventsize = 2
  4150. Next scheduled internal transition at time inf
  4151. __ Current Time: 157.92 __________________________________________
  4152. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4153. Input Port Configuration:
  4154. port <inport>:
  4155. Eventsize = 2
  4156. New State: 0.3
  4157. Next scheduled internal transition at time 158.22
  4158. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4159. New State: inf
  4160. Output Port Configuration:
  4161. port <outport>:
  4162. Eventsize = 2
  4163. Next scheduled internal transition at time inf
  4164. __ Current Time: 158.00 __________________________________________
  4165. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4166. Input Port Configuration:
  4167. port <inport>:
  4168. Eventsize = 2
  4169. New State: 0.66
  4170. Next scheduled internal transition at time 158.66
  4171. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4172. New State: 1.0
  4173. Output Port Configuration:
  4174. port <outport>:
  4175. Eventsize = 2
  4176. Next scheduled internal transition at time 159.00
  4177. __ Current Time: 158.22 __________________________________________
  4178. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4179. New State: inf
  4180. Output Port Configuration:
  4181. port <outport>:
  4182. Eventsize = 2
  4183. Next scheduled internal transition at time inf
  4184. __ Current Time: 158.32 __________________________________________
  4185. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4186. Input Port Configuration:
  4187. port <inport>:
  4188. Eventsize = 2
  4189. New State: 0.3
  4190. Next scheduled internal transition at time 158.62
  4191. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4192. New State: inf
  4193. Output Port Configuration:
  4194. port <outport>:
  4195. Eventsize = 2
  4196. Next scheduled internal transition at time inf
  4197. __ Current Time: 158.62 __________________________________________
  4198. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4199. Input Port Configuration:
  4200. port <inport>:
  4201. Eventsize = 2
  4202. New State: 0.3
  4203. Next scheduled internal transition at time 158.92
  4204. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4205. New State: inf
  4206. Output Port Configuration:
  4207. port <outport>:
  4208. Eventsize = 2
  4209. Next scheduled internal transition at time inf
  4210. __ Current Time: 158.66 __________________________________________
  4211. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4212. Input Port Configuration:
  4213. port <inport>:
  4214. Eventsize = 2
  4215. New State: 0.66
  4216. Next scheduled internal transition at time 159.32
  4217. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4218. New State: inf
  4219. Output Port Configuration:
  4220. port <outport>:
  4221. Eventsize = 2
  4222. Next scheduled internal transition at time inf
  4223. __ Current Time: 158.92 __________________________________________
  4224. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4225. Input Port Configuration:
  4226. port <inport>:
  4227. Eventsize = 2
  4228. New State: 0.3
  4229. Next scheduled internal transition at time 159.22
  4230. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4231. New State: inf
  4232. Output Port Configuration:
  4233. port <outport>:
  4234. Eventsize = 2
  4235. Next scheduled internal transition at time inf
  4236. __ Current Time: 159.00 __________________________________________
  4237. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4238. Input Port Configuration:
  4239. port <inport>:
  4240. Eventsize = 2
  4241. New State: 0.66
  4242. Next scheduled internal transition at time 159.66
  4243. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4244. New State: 1.0
  4245. Output Port Configuration:
  4246. port <outport>:
  4247. Eventsize = 2
  4248. Next scheduled internal transition at time 160.00
  4249. __ Current Time: 159.22 __________________________________________
  4250. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4251. New State: inf
  4252. Output Port Configuration:
  4253. port <outport>:
  4254. Eventsize = 2
  4255. Next scheduled internal transition at time inf
  4256. __ Current Time: 159.32 __________________________________________
  4257. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4258. Input Port Configuration:
  4259. port <inport>:
  4260. Eventsize = 2
  4261. New State: 0.3
  4262. Next scheduled internal transition at time 159.62
  4263. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4264. New State: inf
  4265. Output Port Configuration:
  4266. port <outport>:
  4267. Eventsize = 2
  4268. Next scheduled internal transition at time inf
  4269. __ Current Time: 159.62 __________________________________________
  4270. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4271. Input Port Configuration:
  4272. port <inport>:
  4273. Eventsize = 2
  4274. New State: 0.3
  4275. Next scheduled internal transition at time 159.92
  4276. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4277. New State: inf
  4278. Output Port Configuration:
  4279. port <outport>:
  4280. Eventsize = 2
  4281. Next scheduled internal transition at time inf
  4282. __ Current Time: 159.66 __________________________________________
  4283. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4284. Input Port Configuration:
  4285. port <inport>:
  4286. Eventsize = 2
  4287. New State: 0.66
  4288. Next scheduled internal transition at time 160.32
  4289. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4290. New State: inf
  4291. Output Port Configuration:
  4292. port <outport>:
  4293. Eventsize = 2
  4294. Next scheduled internal transition at time inf
  4295. __ Current Time: 159.92 __________________________________________
  4296. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4297. Input Port Configuration:
  4298. port <inport>:
  4299. Eventsize = 2
  4300. New State: 0.3
  4301. Next scheduled internal transition at time 160.22
  4302. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4303. New State: inf
  4304. Output Port Configuration:
  4305. port <outport>:
  4306. Eventsize = 2
  4307. Next scheduled internal transition at time inf
  4308. __ Current Time: 160.00 __________________________________________
  4309. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4310. Input Port Configuration:
  4311. port <inport>:
  4312. Eventsize = 2
  4313. New State: 0.66
  4314. Next scheduled internal transition at time 160.66
  4315. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4316. New State: 1.0
  4317. Output Port Configuration:
  4318. port <outport>:
  4319. Eventsize = 2
  4320. Next scheduled internal transition at time 161.00
  4321. __ Current Time: 160.22 __________________________________________
  4322. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4323. New State: inf
  4324. Output Port Configuration:
  4325. port <outport>:
  4326. Eventsize = 2
  4327. Next scheduled internal transition at time inf
  4328. __ Current Time: 160.32 __________________________________________
  4329. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4330. Input Port Configuration:
  4331. port <inport>:
  4332. Eventsize = 2
  4333. New State: 0.3
  4334. Next scheduled internal transition at time 160.62
  4335. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4336. New State: inf
  4337. Output Port Configuration:
  4338. port <outport>:
  4339. Eventsize = 2
  4340. Next scheduled internal transition at time inf
  4341. __ Current Time: 160.62 __________________________________________
  4342. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4343. Input Port Configuration:
  4344. port <inport>:
  4345. Eventsize = 2
  4346. New State: 0.3
  4347. Next scheduled internal transition at time 160.92
  4348. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4349. New State: inf
  4350. Output Port Configuration:
  4351. port <outport>:
  4352. Eventsize = 2
  4353. Next scheduled internal transition at time inf
  4354. __ Current Time: 160.66 __________________________________________
  4355. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4356. Input Port Configuration:
  4357. port <inport>:
  4358. Eventsize = 2
  4359. New State: 0.66
  4360. Next scheduled internal transition at time 161.32
  4361. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4362. New State: inf
  4363. Output Port Configuration:
  4364. port <outport>:
  4365. Eventsize = 2
  4366. Next scheduled internal transition at time inf
  4367. __ Current Time: 160.92 __________________________________________
  4368. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4369. Input Port Configuration:
  4370. port <inport>:
  4371. Eventsize = 2
  4372. New State: 0.3
  4373. Next scheduled internal transition at time 161.22
  4374. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4375. New State: inf
  4376. Output Port Configuration:
  4377. port <outport>:
  4378. Eventsize = 2
  4379. Next scheduled internal transition at time inf
  4380. __ Current Time: 161.00 __________________________________________
  4381. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4382. Input Port Configuration:
  4383. port <inport>:
  4384. Eventsize = 2
  4385. New State: 0.66
  4386. Next scheduled internal transition at time 161.66
  4387. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4388. New State: 1.0
  4389. Output Port Configuration:
  4390. port <outport>:
  4391. Eventsize = 2
  4392. Next scheduled internal transition at time 162.00
  4393. __ Current Time: 161.22 __________________________________________
  4394. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4395. New State: inf
  4396. Output Port Configuration:
  4397. port <outport>:
  4398. Eventsize = 2
  4399. Next scheduled internal transition at time inf
  4400. __ Current Time: 161.32 __________________________________________
  4401. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4402. Input Port Configuration:
  4403. port <inport>:
  4404. Eventsize = 2
  4405. New State: 0.3
  4406. Next scheduled internal transition at time 161.62
  4407. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4408. New State: inf
  4409. Output Port Configuration:
  4410. port <outport>:
  4411. Eventsize = 2
  4412. Next scheduled internal transition at time inf
  4413. __ Current Time: 161.62 __________________________________________
  4414. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4415. Input Port Configuration:
  4416. port <inport>:
  4417. Eventsize = 2
  4418. New State: 0.3
  4419. Next scheduled internal transition at time 161.92
  4420. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4421. New State: inf
  4422. Output Port Configuration:
  4423. port <outport>:
  4424. Eventsize = 2
  4425. Next scheduled internal transition at time inf
  4426. __ Current Time: 161.66 __________________________________________
  4427. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4428. Input Port Configuration:
  4429. port <inport>:
  4430. Eventsize = 2
  4431. New State: 0.66
  4432. Next scheduled internal transition at time 162.32
  4433. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4434. New State: inf
  4435. Output Port Configuration:
  4436. port <outport>:
  4437. Eventsize = 2
  4438. Next scheduled internal transition at time inf
  4439. __ Current Time: 161.92 __________________________________________
  4440. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4441. Input Port Configuration:
  4442. port <inport>:
  4443. Eventsize = 2
  4444. New State: 0.3
  4445. Next scheduled internal transition at time 162.22
  4446. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4447. New State: inf
  4448. Output Port Configuration:
  4449. port <outport>:
  4450. Eventsize = 2
  4451. Next scheduled internal transition at time inf
  4452. __ Current Time: 162.00 __________________________________________
  4453. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4454. Input Port Configuration:
  4455. port <inport>:
  4456. Eventsize = 2
  4457. New State: 0.66
  4458. Next scheduled internal transition at time 162.66
  4459. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4460. New State: 1.0
  4461. Output Port Configuration:
  4462. port <outport>:
  4463. Eventsize = 2
  4464. Next scheduled internal transition at time 163.00
  4465. __ Current Time: 162.22 __________________________________________
  4466. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4467. New State: inf
  4468. Output Port Configuration:
  4469. port <outport>:
  4470. Eventsize = 2
  4471. Next scheduled internal transition at time inf
  4472. __ Current Time: 162.32 __________________________________________
  4473. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4474. Input Port Configuration:
  4475. port <inport>:
  4476. Eventsize = 2
  4477. New State: 0.3
  4478. Next scheduled internal transition at time 162.62
  4479. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4480. New State: inf
  4481. Output Port Configuration:
  4482. port <outport>:
  4483. Eventsize = 2
  4484. Next scheduled internal transition at time inf
  4485. __ Current Time: 162.62 __________________________________________
  4486. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4487. Input Port Configuration:
  4488. port <inport>:
  4489. Eventsize = 2
  4490. New State: 0.3
  4491. Next scheduled internal transition at time 162.92
  4492. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4493. New State: inf
  4494. Output Port Configuration:
  4495. port <outport>:
  4496. Eventsize = 2
  4497. Next scheduled internal transition at time inf
  4498. __ Current Time: 162.66 __________________________________________
  4499. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4500. Input Port Configuration:
  4501. port <inport>:
  4502. Eventsize = 2
  4503. New State: 0.66
  4504. Next scheduled internal transition at time 163.32
  4505. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4506. New State: inf
  4507. Output Port Configuration:
  4508. port <outport>:
  4509. Eventsize = 2
  4510. Next scheduled internal transition at time inf
  4511. __ Current Time: 162.92 __________________________________________
  4512. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4513. Input Port Configuration:
  4514. port <inport>:
  4515. Eventsize = 2
  4516. New State: 0.3
  4517. Next scheduled internal transition at time 163.22
  4518. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4519. New State: inf
  4520. Output Port Configuration:
  4521. port <outport>:
  4522. Eventsize = 2
  4523. Next scheduled internal transition at time inf
  4524. __ Current Time: 163.00 __________________________________________
  4525. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4526. Input Port Configuration:
  4527. port <inport>:
  4528. Eventsize = 2
  4529. New State: 0.66
  4530. Next scheduled internal transition at time 163.66
  4531. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4532. New State: 1.0
  4533. Output Port Configuration:
  4534. port <outport>:
  4535. Eventsize = 2
  4536. Next scheduled internal transition at time 164.00
  4537. __ Current Time: 163.22 __________________________________________
  4538. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4539. New State: inf
  4540. Output Port Configuration:
  4541. port <outport>:
  4542. Eventsize = 2
  4543. Next scheduled internal transition at time inf
  4544. __ Current Time: 163.32 __________________________________________
  4545. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4546. Input Port Configuration:
  4547. port <inport>:
  4548. Eventsize = 2
  4549. New State: 0.3
  4550. Next scheduled internal transition at time 163.62
  4551. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4552. New State: inf
  4553. Output Port Configuration:
  4554. port <outport>:
  4555. Eventsize = 2
  4556. Next scheduled internal transition at time inf
  4557. __ Current Time: 163.62 __________________________________________
  4558. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4559. Input Port Configuration:
  4560. port <inport>:
  4561. Eventsize = 2
  4562. New State: 0.3
  4563. Next scheduled internal transition at time 163.92
  4564. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4565. New State: inf
  4566. Output Port Configuration:
  4567. port <outport>:
  4568. Eventsize = 2
  4569. Next scheduled internal transition at time inf
  4570. __ Current Time: 163.66 __________________________________________
  4571. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4572. Input Port Configuration:
  4573. port <inport>:
  4574. Eventsize = 2
  4575. New State: 0.66
  4576. Next scheduled internal transition at time 164.32
  4577. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4578. New State: inf
  4579. Output Port Configuration:
  4580. port <outport>:
  4581. Eventsize = 2
  4582. Next scheduled internal transition at time inf
  4583. __ Current Time: 163.92 __________________________________________
  4584. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4585. Input Port Configuration:
  4586. port <inport>:
  4587. Eventsize = 2
  4588. New State: 0.3
  4589. Next scheduled internal transition at time 164.22
  4590. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4591. New State: inf
  4592. Output Port Configuration:
  4593. port <outport>:
  4594. Eventsize = 2
  4595. Next scheduled internal transition at time inf
  4596. __ Current Time: 164.00 __________________________________________
  4597. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4598. Input Port Configuration:
  4599. port <inport>:
  4600. Eventsize = 2
  4601. New State: 0.66
  4602. Next scheduled internal transition at time 164.66
  4603. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4604. New State: 1.0
  4605. Output Port Configuration:
  4606. port <outport>:
  4607. Eventsize = 2
  4608. Next scheduled internal transition at time 165.00
  4609. __ Current Time: 164.22 __________________________________________
  4610. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4611. New State: inf
  4612. Output Port Configuration:
  4613. port <outport>:
  4614. Eventsize = 2
  4615. Next scheduled internal transition at time inf
  4616. __ Current Time: 164.32 __________________________________________
  4617. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4618. Input Port Configuration:
  4619. port <inport>:
  4620. Eventsize = 2
  4621. New State: 0.3
  4622. Next scheduled internal transition at time 164.62
  4623. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4624. New State: inf
  4625. Output Port Configuration:
  4626. port <outport>:
  4627. Eventsize = 2
  4628. Next scheduled internal transition at time inf
  4629. __ Current Time: 164.62 __________________________________________
  4630. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4631. Input Port Configuration:
  4632. port <inport>:
  4633. Eventsize = 2
  4634. New State: 0.3
  4635. Next scheduled internal transition at time 164.92
  4636. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4637. New State: inf
  4638. Output Port Configuration:
  4639. port <outport>:
  4640. Eventsize = 2
  4641. Next scheduled internal transition at time inf
  4642. __ Current Time: 164.66 __________________________________________
  4643. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4644. Input Port Configuration:
  4645. port <inport>:
  4646. Eventsize = 2
  4647. New State: 0.66
  4648. Next scheduled internal transition at time 165.32
  4649. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4650. New State: inf
  4651. Output Port Configuration:
  4652. port <outport>:
  4653. Eventsize = 2
  4654. Next scheduled internal transition at time inf
  4655. __ Current Time: 164.92 __________________________________________
  4656. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4657. Input Port Configuration:
  4658. port <inport>:
  4659. Eventsize = 2
  4660. New State: 0.3
  4661. Next scheduled internal transition at time 165.22
  4662. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4663. New State: inf
  4664. Output Port Configuration:
  4665. port <outport>:
  4666. Eventsize = 2
  4667. Next scheduled internal transition at time inf
  4668. __ Current Time: 165.00 __________________________________________
  4669. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4670. Input Port Configuration:
  4671. port <inport>:
  4672. Eventsize = 2
  4673. New State: 0.66
  4674. Next scheduled internal transition at time 165.66
  4675. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4676. New State: 1.0
  4677. Output Port Configuration:
  4678. port <outport>:
  4679. Eventsize = 2
  4680. Next scheduled internal transition at time 166.00
  4681. __ Current Time: 165.22 __________________________________________
  4682. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4683. New State: inf
  4684. Output Port Configuration:
  4685. port <outport>:
  4686. Eventsize = 2
  4687. Next scheduled internal transition at time inf
  4688. __ Current Time: 165.32 __________________________________________
  4689. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4690. Input Port Configuration:
  4691. port <inport>:
  4692. Eventsize = 2
  4693. New State: 0.3
  4694. Next scheduled internal transition at time 165.62
  4695. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4696. New State: inf
  4697. Output Port Configuration:
  4698. port <outport>:
  4699. Eventsize = 2
  4700. Next scheduled internal transition at time inf
  4701. __ Current Time: 165.62 __________________________________________
  4702. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4703. Input Port Configuration:
  4704. port <inport>:
  4705. Eventsize = 2
  4706. New State: 0.3
  4707. Next scheduled internal transition at time 165.92
  4708. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4709. New State: inf
  4710. Output Port Configuration:
  4711. port <outport>:
  4712. Eventsize = 2
  4713. Next scheduled internal transition at time inf
  4714. __ Current Time: 165.66 __________________________________________
  4715. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4716. Input Port Configuration:
  4717. port <inport>:
  4718. Eventsize = 2
  4719. New State: 0.66
  4720. Next scheduled internal transition at time 166.32
  4721. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4722. New State: inf
  4723. Output Port Configuration:
  4724. port <outport>:
  4725. Eventsize = 2
  4726. Next scheduled internal transition at time inf
  4727. __ Current Time: 165.92 __________________________________________
  4728. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4729. Input Port Configuration:
  4730. port <inport>:
  4731. Eventsize = 2
  4732. New State: 0.3
  4733. Next scheduled internal transition at time 166.22
  4734. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4735. New State: inf
  4736. Output Port Configuration:
  4737. port <outport>:
  4738. Eventsize = 2
  4739. Next scheduled internal transition at time inf
  4740. __ Current Time: 166.00 __________________________________________
  4741. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4742. Input Port Configuration:
  4743. port <inport>:
  4744. Eventsize = 2
  4745. New State: 0.66
  4746. Next scheduled internal transition at time 166.66
  4747. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4748. New State: 1.0
  4749. Output Port Configuration:
  4750. port <outport>:
  4751. Eventsize = 2
  4752. Next scheduled internal transition at time 167.00
  4753. __ Current Time: 166.22 __________________________________________
  4754. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4755. New State: inf
  4756. Output Port Configuration:
  4757. port <outport>:
  4758. Eventsize = 2
  4759. Next scheduled internal transition at time inf
  4760. __ Current Time: 166.32 __________________________________________
  4761. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4762. Input Port Configuration:
  4763. port <inport>:
  4764. Eventsize = 2
  4765. New State: 0.3
  4766. Next scheduled internal transition at time 166.62
  4767. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4768. New State: inf
  4769. Output Port Configuration:
  4770. port <outport>:
  4771. Eventsize = 2
  4772. Next scheduled internal transition at time inf
  4773. __ Current Time: 166.62 __________________________________________
  4774. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4775. Input Port Configuration:
  4776. port <inport>:
  4777. Eventsize = 2
  4778. New State: 0.3
  4779. Next scheduled internal transition at time 166.92
  4780. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4781. New State: inf
  4782. Output Port Configuration:
  4783. port <outport>:
  4784. Eventsize = 2
  4785. Next scheduled internal transition at time inf
  4786. __ Current Time: 166.66 __________________________________________
  4787. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4788. Input Port Configuration:
  4789. port <inport>:
  4790. Eventsize = 2
  4791. New State: 0.66
  4792. Next scheduled internal transition at time 167.32
  4793. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4794. New State: inf
  4795. Output Port Configuration:
  4796. port <outport>:
  4797. Eventsize = 2
  4798. Next scheduled internal transition at time inf
  4799. __ Current Time: 166.92 __________________________________________
  4800. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4801. Input Port Configuration:
  4802. port <inport>:
  4803. Eventsize = 2
  4804. New State: 0.3
  4805. Next scheduled internal transition at time 167.22
  4806. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4807. New State: inf
  4808. Output Port Configuration:
  4809. port <outport>:
  4810. Eventsize = 2
  4811. Next scheduled internal transition at time inf
  4812. __ Current Time: 167.00 __________________________________________
  4813. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4814. Input Port Configuration:
  4815. port <inport>:
  4816. Eventsize = 2
  4817. New State: 0.66
  4818. Next scheduled internal transition at time 167.66
  4819. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4820. New State: 1.0
  4821. Output Port Configuration:
  4822. port <outport>:
  4823. Eventsize = 2
  4824. Next scheduled internal transition at time 168.00
  4825. __ Current Time: 167.22 __________________________________________
  4826. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4827. New State: inf
  4828. Output Port Configuration:
  4829. port <outport>:
  4830. Eventsize = 2
  4831. Next scheduled internal transition at time inf
  4832. __ Current Time: 167.32 __________________________________________
  4833. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4834. Input Port Configuration:
  4835. port <inport>:
  4836. Eventsize = 2
  4837. New State: 0.3
  4838. Next scheduled internal transition at time 167.62
  4839. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4840. New State: inf
  4841. Output Port Configuration:
  4842. port <outport>:
  4843. Eventsize = 2
  4844. Next scheduled internal transition at time inf
  4845. __ Current Time: 167.62 __________________________________________
  4846. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4847. Input Port Configuration:
  4848. port <inport>:
  4849. Eventsize = 2
  4850. New State: 0.3
  4851. Next scheduled internal transition at time 167.92
  4852. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4853. New State: inf
  4854. Output Port Configuration:
  4855. port <outport>:
  4856. Eventsize = 2
  4857. Next scheduled internal transition at time inf
  4858. __ Current Time: 167.66 __________________________________________
  4859. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4860. Input Port Configuration:
  4861. port <inport>:
  4862. Eventsize = 2
  4863. New State: 0.66
  4864. Next scheduled internal transition at time 168.32
  4865. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4866. New State: inf
  4867. Output Port Configuration:
  4868. port <outport>:
  4869. Eventsize = 2
  4870. Next scheduled internal transition at time inf
  4871. __ Current Time: 167.92 __________________________________________
  4872. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4873. Input Port Configuration:
  4874. port <inport>:
  4875. Eventsize = 2
  4876. New State: 0.3
  4877. Next scheduled internal transition at time 168.22
  4878. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4879. New State: inf
  4880. Output Port Configuration:
  4881. port <outport>:
  4882. Eventsize = 2
  4883. Next scheduled internal transition at time inf
  4884. __ Current Time: 168.00 __________________________________________
  4885. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4886. Input Port Configuration:
  4887. port <inport>:
  4888. Eventsize = 2
  4889. New State: 0.66
  4890. Next scheduled internal transition at time 168.66
  4891. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4892. New State: 1.0
  4893. Output Port Configuration:
  4894. port <outport>:
  4895. Eventsize = 2
  4896. Next scheduled internal transition at time 169.00
  4897. __ Current Time: 168.22 __________________________________________
  4898. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4899. New State: inf
  4900. Output Port Configuration:
  4901. port <outport>:
  4902. Eventsize = 2
  4903. Next scheduled internal transition at time inf
  4904. __ Current Time: 168.32 __________________________________________
  4905. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4906. Input Port Configuration:
  4907. port <inport>:
  4908. Eventsize = 2
  4909. New State: 0.3
  4910. Next scheduled internal transition at time 168.62
  4911. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4912. New State: inf
  4913. Output Port Configuration:
  4914. port <outport>:
  4915. Eventsize = 2
  4916. Next scheduled internal transition at time inf
  4917. __ Current Time: 168.62 __________________________________________
  4918. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4919. Input Port Configuration:
  4920. port <inport>:
  4921. Eventsize = 2
  4922. New State: 0.3
  4923. Next scheduled internal transition at time 168.92
  4924. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4925. New State: inf
  4926. Output Port Configuration:
  4927. port <outport>:
  4928. Eventsize = 2
  4929. Next scheduled internal transition at time inf
  4930. __ Current Time: 168.66 __________________________________________
  4931. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4932. Input Port Configuration:
  4933. port <inport>:
  4934. Eventsize = 2
  4935. New State: 0.66
  4936. Next scheduled internal transition at time 169.32
  4937. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4938. New State: inf
  4939. Output Port Configuration:
  4940. port <outport>:
  4941. Eventsize = 2
  4942. Next scheduled internal transition at time inf
  4943. __ Current Time: 168.92 __________________________________________
  4944. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4945. Input Port Configuration:
  4946. port <inport>:
  4947. Eventsize = 2
  4948. New State: 0.3
  4949. Next scheduled internal transition at time 169.22
  4950. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4951. New State: inf
  4952. Output Port Configuration:
  4953. port <outport>:
  4954. Eventsize = 2
  4955. Next scheduled internal transition at time inf
  4956. __ Current Time: 169.00 __________________________________________
  4957. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  4958. Input Port Configuration:
  4959. port <inport>:
  4960. Eventsize = 2
  4961. New State: 0.66
  4962. Next scheduled internal transition at time 169.66
  4963. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  4964. New State: 1.0
  4965. Output Port Configuration:
  4966. port <outport>:
  4967. Eventsize = 2
  4968. Next scheduled internal transition at time 170.00
  4969. __ Current Time: 169.22 __________________________________________
  4970. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  4971. New State: inf
  4972. Output Port Configuration:
  4973. port <outport>:
  4974. Eventsize = 2
  4975. Next scheduled internal transition at time inf
  4976. __ Current Time: 169.32 __________________________________________
  4977. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4978. Input Port Configuration:
  4979. port <inport>:
  4980. Eventsize = 2
  4981. New State: 0.3
  4982. Next scheduled internal transition at time 169.62
  4983. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  4984. New State: inf
  4985. Output Port Configuration:
  4986. port <outport>:
  4987. Eventsize = 2
  4988. Next scheduled internal transition at time inf
  4989. __ Current Time: 169.62 __________________________________________
  4990. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  4991. Input Port Configuration:
  4992. port <inport>:
  4993. Eventsize = 2
  4994. New State: 0.3
  4995. Next scheduled internal transition at time 169.92
  4996. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  4997. New State: inf
  4998. Output Port Configuration:
  4999. port <outport>:
  5000. Eventsize = 2
  5001. Next scheduled internal transition at time inf
  5002. __ Current Time: 169.66 __________________________________________
  5003. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5004. Input Port Configuration:
  5005. port <inport>:
  5006. Eventsize = 2
  5007. New State: 0.66
  5008. Next scheduled internal transition at time 170.32
  5009. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5010. New State: inf
  5011. Output Port Configuration:
  5012. port <outport>:
  5013. Eventsize = 2
  5014. Next scheduled internal transition at time inf
  5015. __ Current Time: 169.92 __________________________________________
  5016. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5017. Input Port Configuration:
  5018. port <inport>:
  5019. Eventsize = 2
  5020. New State: 0.3
  5021. Next scheduled internal transition at time 170.22
  5022. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5023. New State: inf
  5024. Output Port Configuration:
  5025. port <outport>:
  5026. Eventsize = 2
  5027. Next scheduled internal transition at time inf
  5028. __ Current Time: 170.00 __________________________________________
  5029. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5030. Input Port Configuration:
  5031. port <inport>:
  5032. Eventsize = 2
  5033. New State: 0.66
  5034. Next scheduled internal transition at time 170.66
  5035. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5036. New State: 1.0
  5037. Output Port Configuration:
  5038. port <outport>:
  5039. Eventsize = 2
  5040. Next scheduled internal transition at time 171.00
  5041. __ Current Time: 170.22 __________________________________________
  5042. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5043. New State: inf
  5044. Output Port Configuration:
  5045. port <outport>:
  5046. Eventsize = 2
  5047. Next scheduled internal transition at time inf
  5048. __ Current Time: 170.32 __________________________________________
  5049. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5050. Input Port Configuration:
  5051. port <inport>:
  5052. Eventsize = 2
  5053. New State: 0.3
  5054. Next scheduled internal transition at time 170.62
  5055. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5056. New State: inf
  5057. Output Port Configuration:
  5058. port <outport>:
  5059. Eventsize = 2
  5060. Next scheduled internal transition at time inf
  5061. __ Current Time: 170.62 __________________________________________
  5062. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5063. Input Port Configuration:
  5064. port <inport>:
  5065. Eventsize = 2
  5066. New State: 0.3
  5067. Next scheduled internal transition at time 170.92
  5068. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5069. New State: inf
  5070. Output Port Configuration:
  5071. port <outport>:
  5072. Eventsize = 2
  5073. Next scheduled internal transition at time inf
  5074. __ Current Time: 170.66 __________________________________________
  5075. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5076. Input Port Configuration:
  5077. port <inport>:
  5078. Eventsize = 2
  5079. New State: 0.66
  5080. Next scheduled internal transition at time 171.32
  5081. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5082. New State: inf
  5083. Output Port Configuration:
  5084. port <outport>:
  5085. Eventsize = 2
  5086. Next scheduled internal transition at time inf
  5087. __ Current Time: 170.92 __________________________________________
  5088. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5089. Input Port Configuration:
  5090. port <inport>:
  5091. Eventsize = 2
  5092. New State: 0.3
  5093. Next scheduled internal transition at time 171.22
  5094. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5095. New State: inf
  5096. Output Port Configuration:
  5097. port <outport>:
  5098. Eventsize = 2
  5099. Next scheduled internal transition at time inf
  5100. __ Current Time: 171.00 __________________________________________
  5101. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5102. Input Port Configuration:
  5103. port <inport>:
  5104. Eventsize = 2
  5105. New State: 0.66
  5106. Next scheduled internal transition at time 171.66
  5107. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5108. New State: 1.0
  5109. Output Port Configuration:
  5110. port <outport>:
  5111. Eventsize = 2
  5112. Next scheduled internal transition at time 172.00
  5113. __ Current Time: 171.22 __________________________________________
  5114. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5115. New State: inf
  5116. Output Port Configuration:
  5117. port <outport>:
  5118. Eventsize = 2
  5119. Next scheduled internal transition at time inf
  5120. __ Current Time: 171.32 __________________________________________
  5121. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5122. Input Port Configuration:
  5123. port <inport>:
  5124. Eventsize = 2
  5125. New State: 0.3
  5126. Next scheduled internal transition at time 171.62
  5127. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5128. New State: inf
  5129. Output Port Configuration:
  5130. port <outport>:
  5131. Eventsize = 2
  5132. Next scheduled internal transition at time inf
  5133. __ Current Time: 171.62 __________________________________________
  5134. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5135. Input Port Configuration:
  5136. port <inport>:
  5137. Eventsize = 2
  5138. New State: 0.3
  5139. Next scheduled internal transition at time 171.92
  5140. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5141. New State: inf
  5142. Output Port Configuration:
  5143. port <outport>:
  5144. Eventsize = 2
  5145. Next scheduled internal transition at time inf
  5146. __ Current Time: 171.66 __________________________________________
  5147. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5148. Input Port Configuration:
  5149. port <inport>:
  5150. Eventsize = 2
  5151. New State: 0.66
  5152. Next scheduled internal transition at time 172.32
  5153. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5154. New State: inf
  5155. Output Port Configuration:
  5156. port <outport>:
  5157. Eventsize = 2
  5158. Next scheduled internal transition at time inf
  5159. __ Current Time: 171.92 __________________________________________
  5160. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5161. Input Port Configuration:
  5162. port <inport>:
  5163. Eventsize = 2
  5164. New State: 0.3
  5165. Next scheduled internal transition at time 172.22
  5166. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5167. New State: inf
  5168. Output Port Configuration:
  5169. port <outport>:
  5170. Eventsize = 2
  5171. Next scheduled internal transition at time inf
  5172. __ Current Time: 172.00 __________________________________________
  5173. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5174. Input Port Configuration:
  5175. port <inport>:
  5176. Eventsize = 2
  5177. New State: 0.66
  5178. Next scheduled internal transition at time 172.66
  5179. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5180. New State: 1.0
  5181. Output Port Configuration:
  5182. port <outport>:
  5183. Eventsize = 2
  5184. Next scheduled internal transition at time 173.00
  5185. __ Current Time: 172.22 __________________________________________
  5186. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5187. New State: inf
  5188. Output Port Configuration:
  5189. port <outport>:
  5190. Eventsize = 2
  5191. Next scheduled internal transition at time inf
  5192. __ Current Time: 172.32 __________________________________________
  5193. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5194. Input Port Configuration:
  5195. port <inport>:
  5196. Eventsize = 2
  5197. New State: 0.3
  5198. Next scheduled internal transition at time 172.62
  5199. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5200. New State: inf
  5201. Output Port Configuration:
  5202. port <outport>:
  5203. Eventsize = 2
  5204. Next scheduled internal transition at time inf
  5205. __ Current Time: 172.62 __________________________________________
  5206. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5207. Input Port Configuration:
  5208. port <inport>:
  5209. Eventsize = 2
  5210. New State: 0.3
  5211. Next scheduled internal transition at time 172.92
  5212. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5213. New State: inf
  5214. Output Port Configuration:
  5215. port <outport>:
  5216. Eventsize = 2
  5217. Next scheduled internal transition at time inf
  5218. __ Current Time: 172.66 __________________________________________
  5219. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5220. Input Port Configuration:
  5221. port <inport>:
  5222. Eventsize = 2
  5223. New State: 0.66
  5224. Next scheduled internal transition at time 173.32
  5225. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5226. New State: inf
  5227. Output Port Configuration:
  5228. port <outport>:
  5229. Eventsize = 2
  5230. Next scheduled internal transition at time inf
  5231. __ Current Time: 172.92 __________________________________________
  5232. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5233. Input Port Configuration:
  5234. port <inport>:
  5235. Eventsize = 2
  5236. New State: 0.3
  5237. Next scheduled internal transition at time 173.22
  5238. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5239. New State: inf
  5240. Output Port Configuration:
  5241. port <outport>:
  5242. Eventsize = 2
  5243. Next scheduled internal transition at time inf
  5244. __ Current Time: 173.00 __________________________________________
  5245. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5246. Input Port Configuration:
  5247. port <inport>:
  5248. Eventsize = 2
  5249. New State: 0.66
  5250. Next scheduled internal transition at time 173.66
  5251. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5252. New State: 1.0
  5253. Output Port Configuration:
  5254. port <outport>:
  5255. Eventsize = 2
  5256. Next scheduled internal transition at time 174.00
  5257. __ Current Time: 173.22 __________________________________________
  5258. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5259. New State: inf
  5260. Output Port Configuration:
  5261. port <outport>:
  5262. Eventsize = 2
  5263. Next scheduled internal transition at time inf
  5264. __ Current Time: 173.32 __________________________________________
  5265. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5266. Input Port Configuration:
  5267. port <inport>:
  5268. Eventsize = 2
  5269. New State: 0.3
  5270. Next scheduled internal transition at time 173.62
  5271. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5272. New State: inf
  5273. Output Port Configuration:
  5274. port <outport>:
  5275. Eventsize = 2
  5276. Next scheduled internal transition at time inf
  5277. __ Current Time: 173.62 __________________________________________
  5278. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5279. Input Port Configuration:
  5280. port <inport>:
  5281. Eventsize = 2
  5282. New State: 0.3
  5283. Next scheduled internal transition at time 173.92
  5284. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5285. New State: inf
  5286. Output Port Configuration:
  5287. port <outport>:
  5288. Eventsize = 2
  5289. Next scheduled internal transition at time inf
  5290. __ Current Time: 173.66 __________________________________________
  5291. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5292. Input Port Configuration:
  5293. port <inport>:
  5294. Eventsize = 2
  5295. New State: 0.66
  5296. Next scheduled internal transition at time 174.32
  5297. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5298. New State: inf
  5299. Output Port Configuration:
  5300. port <outport>:
  5301. Eventsize = 2
  5302. Next scheduled internal transition at time inf
  5303. __ Current Time: 173.92 __________________________________________
  5304. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5305. Input Port Configuration:
  5306. port <inport>:
  5307. Eventsize = 2
  5308. New State: 0.3
  5309. Next scheduled internal transition at time 174.22
  5310. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5311. New State: inf
  5312. Output Port Configuration:
  5313. port <outport>:
  5314. Eventsize = 2
  5315. Next scheduled internal transition at time inf
  5316. __ Current Time: 174.00 __________________________________________
  5317. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5318. Input Port Configuration:
  5319. port <inport>:
  5320. Eventsize = 2
  5321. New State: 0.66
  5322. Next scheduled internal transition at time 174.66
  5323. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5324. New State: 1.0
  5325. Output Port Configuration:
  5326. port <outport>:
  5327. Eventsize = 2
  5328. Next scheduled internal transition at time 175.00
  5329. __ Current Time: 174.22 __________________________________________
  5330. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5331. New State: inf
  5332. Output Port Configuration:
  5333. port <outport>:
  5334. Eventsize = 2
  5335. Next scheduled internal transition at time inf
  5336. __ Current Time: 174.32 __________________________________________
  5337. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5338. Input Port Configuration:
  5339. port <inport>:
  5340. Eventsize = 2
  5341. New State: 0.3
  5342. Next scheduled internal transition at time 174.62
  5343. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5344. New State: inf
  5345. Output Port Configuration:
  5346. port <outport>:
  5347. Eventsize = 2
  5348. Next scheduled internal transition at time inf
  5349. __ Current Time: 174.62 __________________________________________
  5350. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5351. Input Port Configuration:
  5352. port <inport>:
  5353. Eventsize = 2
  5354. New State: 0.3
  5355. Next scheduled internal transition at time 174.92
  5356. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5357. New State: inf
  5358. Output Port Configuration:
  5359. port <outport>:
  5360. Eventsize = 2
  5361. Next scheduled internal transition at time inf
  5362. __ Current Time: 174.66 __________________________________________
  5363. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5364. Input Port Configuration:
  5365. port <inport>:
  5366. Eventsize = 2
  5367. New State: 0.66
  5368. Next scheduled internal transition at time 175.32
  5369. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5370. New State: inf
  5371. Output Port Configuration:
  5372. port <outport>:
  5373. Eventsize = 2
  5374. Next scheduled internal transition at time inf
  5375. __ Current Time: 174.92 __________________________________________
  5376. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5377. Input Port Configuration:
  5378. port <inport>:
  5379. Eventsize = 2
  5380. New State: 0.3
  5381. Next scheduled internal transition at time 175.22
  5382. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5383. New State: inf
  5384. Output Port Configuration:
  5385. port <outport>:
  5386. Eventsize = 2
  5387. Next scheduled internal transition at time inf
  5388. __ Current Time: 175.00 __________________________________________
  5389. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5390. Input Port Configuration:
  5391. port <inport>:
  5392. Eventsize = 2
  5393. New State: 0.66
  5394. Next scheduled internal transition at time 175.66
  5395. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5396. New State: 1.0
  5397. Output Port Configuration:
  5398. port <outport>:
  5399. Eventsize = 2
  5400. Next scheduled internal transition at time 176.00
  5401. __ Current Time: 175.22 __________________________________________
  5402. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5403. New State: inf
  5404. Output Port Configuration:
  5405. port <outport>:
  5406. Eventsize = 2
  5407. Next scheduled internal transition at time inf
  5408. __ Current Time: 175.32 __________________________________________
  5409. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5410. Input Port Configuration:
  5411. port <inport>:
  5412. Eventsize = 2
  5413. New State: 0.3
  5414. Next scheduled internal transition at time 175.62
  5415. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5416. New State: inf
  5417. Output Port Configuration:
  5418. port <outport>:
  5419. Eventsize = 2
  5420. Next scheduled internal transition at time inf
  5421. __ Current Time: 175.62 __________________________________________
  5422. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5423. Input Port Configuration:
  5424. port <inport>:
  5425. Eventsize = 2
  5426. New State: 0.3
  5427. Next scheduled internal transition at time 175.92
  5428. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5429. New State: inf
  5430. Output Port Configuration:
  5431. port <outport>:
  5432. Eventsize = 2
  5433. Next scheduled internal transition at time inf
  5434. __ Current Time: 175.66 __________________________________________
  5435. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5436. Input Port Configuration:
  5437. port <inport>:
  5438. Eventsize = 2
  5439. New State: 0.66
  5440. Next scheduled internal transition at time 176.32
  5441. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5442. New State: inf
  5443. Output Port Configuration:
  5444. port <outport>:
  5445. Eventsize = 2
  5446. Next scheduled internal transition at time inf
  5447. __ Current Time: 175.92 __________________________________________
  5448. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5449. Input Port Configuration:
  5450. port <inport>:
  5451. Eventsize = 2
  5452. New State: 0.3
  5453. Next scheduled internal transition at time 176.22
  5454. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5455. New State: inf
  5456. Output Port Configuration:
  5457. port <outport>:
  5458. Eventsize = 2
  5459. Next scheduled internal transition at time inf
  5460. __ Current Time: 176.00 __________________________________________
  5461. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5462. Input Port Configuration:
  5463. port <inport>:
  5464. Eventsize = 2
  5465. New State: 0.66
  5466. Next scheduled internal transition at time 176.66
  5467. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5468. New State: 1.0
  5469. Output Port Configuration:
  5470. port <outport>:
  5471. Eventsize = 2
  5472. Next scheduled internal transition at time 177.00
  5473. __ Current Time: 176.22 __________________________________________
  5474. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5475. New State: inf
  5476. Output Port Configuration:
  5477. port <outport>:
  5478. Eventsize = 2
  5479. Next scheduled internal transition at time inf
  5480. __ Current Time: 176.32 __________________________________________
  5481. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5482. Input Port Configuration:
  5483. port <inport>:
  5484. Eventsize = 2
  5485. New State: 0.3
  5486. Next scheduled internal transition at time 176.62
  5487. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5488. New State: inf
  5489. Output Port Configuration:
  5490. port <outport>:
  5491. Eventsize = 2
  5492. Next scheduled internal transition at time inf
  5493. __ Current Time: 176.62 __________________________________________
  5494. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5495. Input Port Configuration:
  5496. port <inport>:
  5497. Eventsize = 2
  5498. New State: 0.3
  5499. Next scheduled internal transition at time 176.92
  5500. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5501. New State: inf
  5502. Output Port Configuration:
  5503. port <outport>:
  5504. Eventsize = 2
  5505. Next scheduled internal transition at time inf
  5506. __ Current Time: 176.66 __________________________________________
  5507. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5508. Input Port Configuration:
  5509. port <inport>:
  5510. Eventsize = 2
  5511. New State: 0.66
  5512. Next scheduled internal transition at time 177.32
  5513. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5514. New State: inf
  5515. Output Port Configuration:
  5516. port <outport>:
  5517. Eventsize = 2
  5518. Next scheduled internal transition at time inf
  5519. __ Current Time: 176.92 __________________________________________
  5520. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5521. Input Port Configuration:
  5522. port <inport>:
  5523. Eventsize = 2
  5524. New State: 0.3
  5525. Next scheduled internal transition at time 177.22
  5526. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5527. New State: inf
  5528. Output Port Configuration:
  5529. port <outport>:
  5530. Eventsize = 2
  5531. Next scheduled internal transition at time inf
  5532. __ Current Time: 177.00 __________________________________________
  5533. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5534. Input Port Configuration:
  5535. port <inport>:
  5536. Eventsize = 2
  5537. New State: 0.66
  5538. Next scheduled internal transition at time 177.66
  5539. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5540. New State: 1.0
  5541. Output Port Configuration:
  5542. port <outport>:
  5543. Eventsize = 2
  5544. Next scheduled internal transition at time 178.00
  5545. __ Current Time: 177.22 __________________________________________
  5546. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5547. New State: inf
  5548. Output Port Configuration:
  5549. port <outport>:
  5550. Eventsize = 2
  5551. Next scheduled internal transition at time inf
  5552. __ Current Time: 177.32 __________________________________________
  5553. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5554. Input Port Configuration:
  5555. port <inport>:
  5556. Eventsize = 2
  5557. New State: 0.3
  5558. Next scheduled internal transition at time 177.62
  5559. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5560. New State: inf
  5561. Output Port Configuration:
  5562. port <outport>:
  5563. Eventsize = 2
  5564. Next scheduled internal transition at time inf
  5565. __ Current Time: 177.62 __________________________________________
  5566. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5567. Input Port Configuration:
  5568. port <inport>:
  5569. Eventsize = 2
  5570. New State: 0.3
  5571. Next scheduled internal transition at time 177.92
  5572. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5573. New State: inf
  5574. Output Port Configuration:
  5575. port <outport>:
  5576. Eventsize = 2
  5577. Next scheduled internal transition at time inf
  5578. __ Current Time: 177.66 __________________________________________
  5579. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5580. Input Port Configuration:
  5581. port <inport>:
  5582. Eventsize = 2
  5583. New State: 0.66
  5584. Next scheduled internal transition at time 178.32
  5585. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5586. New State: inf
  5587. Output Port Configuration:
  5588. port <outport>:
  5589. Eventsize = 2
  5590. Next scheduled internal transition at time inf
  5591. __ Current Time: 177.92 __________________________________________
  5592. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5593. Input Port Configuration:
  5594. port <inport>:
  5595. Eventsize = 2
  5596. New State: 0.3
  5597. Next scheduled internal transition at time 178.22
  5598. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5599. New State: inf
  5600. Output Port Configuration:
  5601. port <outport>:
  5602. Eventsize = 2
  5603. Next scheduled internal transition at time inf
  5604. __ Current Time: 178.00 __________________________________________
  5605. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5606. Input Port Configuration:
  5607. port <inport>:
  5608. Eventsize = 2
  5609. New State: 0.66
  5610. Next scheduled internal transition at time 178.66
  5611. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5612. New State: 1.0
  5613. Output Port Configuration:
  5614. port <outport>:
  5615. Eventsize = 2
  5616. Next scheduled internal transition at time 179.00
  5617. __ Current Time: 178.22 __________________________________________
  5618. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5619. New State: inf
  5620. Output Port Configuration:
  5621. port <outport>:
  5622. Eventsize = 2
  5623. Next scheduled internal transition at time inf
  5624. __ Current Time: 178.32 __________________________________________
  5625. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5626. Input Port Configuration:
  5627. port <inport>:
  5628. Eventsize = 2
  5629. New State: 0.3
  5630. Next scheduled internal transition at time 178.62
  5631. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5632. New State: inf
  5633. Output Port Configuration:
  5634. port <outport>:
  5635. Eventsize = 2
  5636. Next scheduled internal transition at time inf
  5637. __ Current Time: 178.62 __________________________________________
  5638. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5639. Input Port Configuration:
  5640. port <inport>:
  5641. Eventsize = 2
  5642. New State: 0.3
  5643. Next scheduled internal transition at time 178.92
  5644. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5645. New State: inf
  5646. Output Port Configuration:
  5647. port <outport>:
  5648. Eventsize = 2
  5649. Next scheduled internal transition at time inf
  5650. __ Current Time: 178.66 __________________________________________
  5651. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5652. Input Port Configuration:
  5653. port <inport>:
  5654. Eventsize = 2
  5655. New State: 0.66
  5656. Next scheduled internal transition at time 179.32
  5657. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5658. New State: inf
  5659. Output Port Configuration:
  5660. port <outport>:
  5661. Eventsize = 2
  5662. Next scheduled internal transition at time inf
  5663. __ Current Time: 178.92 __________________________________________
  5664. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5665. Input Port Configuration:
  5666. port <inport>:
  5667. Eventsize = 2
  5668. New State: 0.3
  5669. Next scheduled internal transition at time 179.22
  5670. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5671. New State: inf
  5672. Output Port Configuration:
  5673. port <outport>:
  5674. Eventsize = 2
  5675. Next scheduled internal transition at time inf
  5676. __ Current Time: 179.00 __________________________________________
  5677. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5678. Input Port Configuration:
  5679. port <inport>:
  5680. Eventsize = 2
  5681. New State: 0.66
  5682. Next scheduled internal transition at time 179.66
  5683. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5684. New State: 1.0
  5685. Output Port Configuration:
  5686. port <outport>:
  5687. Eventsize = 2
  5688. Next scheduled internal transition at time 180.00
  5689. __ Current Time: 179.22 __________________________________________
  5690. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5691. New State: inf
  5692. Output Port Configuration:
  5693. port <outport>:
  5694. Eventsize = 2
  5695. Next scheduled internal transition at time inf
  5696. __ Current Time: 179.32 __________________________________________
  5697. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5698. Input Port Configuration:
  5699. port <inport>:
  5700. Eventsize = 2
  5701. New State: 0.3
  5702. Next scheduled internal transition at time 179.62
  5703. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5704. New State: inf
  5705. Output Port Configuration:
  5706. port <outport>:
  5707. Eventsize = 2
  5708. Next scheduled internal transition at time inf
  5709. __ Current Time: 179.62 __________________________________________
  5710. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5711. Input Port Configuration:
  5712. port <inport>:
  5713. Eventsize = 2
  5714. New State: 0.3
  5715. Next scheduled internal transition at time 179.92
  5716. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5717. New State: inf
  5718. Output Port Configuration:
  5719. port <outport>:
  5720. Eventsize = 2
  5721. Next scheduled internal transition at time inf
  5722. __ Current Time: 179.66 __________________________________________
  5723. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5724. Input Port Configuration:
  5725. port <inport>:
  5726. Eventsize = 2
  5727. New State: 0.66
  5728. Next scheduled internal transition at time 180.32
  5729. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5730. New State: inf
  5731. Output Port Configuration:
  5732. port <outport>:
  5733. Eventsize = 2
  5734. Next scheduled internal transition at time inf
  5735. __ Current Time: 179.92 __________________________________________
  5736. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5737. Input Port Configuration:
  5738. port <inport>:
  5739. Eventsize = 2
  5740. New State: 0.3
  5741. Next scheduled internal transition at time 180.22
  5742. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5743. New State: inf
  5744. Output Port Configuration:
  5745. port <outport>:
  5746. Eventsize = 2
  5747. Next scheduled internal transition at time inf
  5748. __ Current Time: 180.00 __________________________________________
  5749. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5750. Input Port Configuration:
  5751. port <inport>:
  5752. Eventsize = 2
  5753. New State: 0.66
  5754. Next scheduled internal transition at time 180.66
  5755. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5756. New State: 1.0
  5757. Output Port Configuration:
  5758. port <outport>:
  5759. Eventsize = 2
  5760. Next scheduled internal transition at time 181.00
  5761. __ Current Time: 180.22 __________________________________________
  5762. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5763. New State: inf
  5764. Output Port Configuration:
  5765. port <outport>:
  5766. Eventsize = 2
  5767. Next scheduled internal transition at time inf
  5768. __ Current Time: 180.32 __________________________________________
  5769. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5770. Input Port Configuration:
  5771. port <inport>:
  5772. Eventsize = 2
  5773. New State: 0.3
  5774. Next scheduled internal transition at time 180.62
  5775. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5776. New State: inf
  5777. Output Port Configuration:
  5778. port <outport>:
  5779. Eventsize = 2
  5780. Next scheduled internal transition at time inf
  5781. __ Current Time: 180.62 __________________________________________
  5782. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5783. Input Port Configuration:
  5784. port <inport>:
  5785. Eventsize = 2
  5786. New State: 0.3
  5787. Next scheduled internal transition at time 180.92
  5788. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5789. New State: inf
  5790. Output Port Configuration:
  5791. port <outport>:
  5792. Eventsize = 2
  5793. Next scheduled internal transition at time inf
  5794. __ Current Time: 180.66 __________________________________________
  5795. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5796. Input Port Configuration:
  5797. port <inport>:
  5798. Eventsize = 2
  5799. New State: 0.66
  5800. Next scheduled internal transition at time 181.32
  5801. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5802. New State: inf
  5803. Output Port Configuration:
  5804. port <outport>:
  5805. Eventsize = 2
  5806. Next scheduled internal transition at time inf
  5807. __ Current Time: 180.92 __________________________________________
  5808. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5809. Input Port Configuration:
  5810. port <inport>:
  5811. Eventsize = 2
  5812. New State: 0.3
  5813. Next scheduled internal transition at time 181.22
  5814. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5815. New State: inf
  5816. Output Port Configuration:
  5817. port <outport>:
  5818. Eventsize = 2
  5819. Next scheduled internal transition at time inf
  5820. __ Current Time: 181.00 __________________________________________
  5821. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5822. Input Port Configuration:
  5823. port <inport>:
  5824. Eventsize = 2
  5825. New State: 0.66
  5826. Next scheduled internal transition at time 181.66
  5827. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5828. New State: 1.0
  5829. Output Port Configuration:
  5830. port <outport>:
  5831. Eventsize = 2
  5832. Next scheduled internal transition at time 182.00
  5833. __ Current Time: 181.22 __________________________________________
  5834. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5835. New State: inf
  5836. Output Port Configuration:
  5837. port <outport>:
  5838. Eventsize = 2
  5839. Next scheduled internal transition at time inf
  5840. __ Current Time: 181.32 __________________________________________
  5841. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5842. Input Port Configuration:
  5843. port <inport>:
  5844. Eventsize = 2
  5845. New State: 0.3
  5846. Next scheduled internal transition at time 181.62
  5847. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5848. New State: inf
  5849. Output Port Configuration:
  5850. port <outport>:
  5851. Eventsize = 2
  5852. Next scheduled internal transition at time inf
  5853. __ Current Time: 181.62 __________________________________________
  5854. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5855. Input Port Configuration:
  5856. port <inport>:
  5857. Eventsize = 2
  5858. New State: 0.3
  5859. Next scheduled internal transition at time 181.92
  5860. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5861. New State: inf
  5862. Output Port Configuration:
  5863. port <outport>:
  5864. Eventsize = 2
  5865. Next scheduled internal transition at time inf
  5866. __ Current Time: 181.66 __________________________________________
  5867. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5868. Input Port Configuration:
  5869. port <inport>:
  5870. Eventsize = 2
  5871. New State: 0.66
  5872. Next scheduled internal transition at time 182.32
  5873. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5874. New State: inf
  5875. Output Port Configuration:
  5876. port <outport>:
  5877. Eventsize = 2
  5878. Next scheduled internal transition at time inf
  5879. __ Current Time: 181.92 __________________________________________
  5880. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5881. Input Port Configuration:
  5882. port <inport>:
  5883. Eventsize = 2
  5884. New State: 0.3
  5885. Next scheduled internal transition at time 182.22
  5886. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5887. New State: inf
  5888. Output Port Configuration:
  5889. port <outport>:
  5890. Eventsize = 2
  5891. Next scheduled internal transition at time inf
  5892. __ Current Time: 182.00 __________________________________________
  5893. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5894. Input Port Configuration:
  5895. port <inport>:
  5896. Eventsize = 2
  5897. New State: 0.66
  5898. Next scheduled internal transition at time 182.66
  5899. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5900. New State: 1.0
  5901. Output Port Configuration:
  5902. port <outport>:
  5903. Eventsize = 2
  5904. Next scheduled internal transition at time 183.00
  5905. __ Current Time: 182.22 __________________________________________
  5906. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5907. New State: inf
  5908. Output Port Configuration:
  5909. port <outport>:
  5910. Eventsize = 2
  5911. Next scheduled internal transition at time inf
  5912. __ Current Time: 182.32 __________________________________________
  5913. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5914. Input Port Configuration:
  5915. port <inport>:
  5916. Eventsize = 2
  5917. New State: 0.3
  5918. Next scheduled internal transition at time 182.62
  5919. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5920. New State: inf
  5921. Output Port Configuration:
  5922. port <outport>:
  5923. Eventsize = 2
  5924. Next scheduled internal transition at time inf
  5925. __ Current Time: 182.62 __________________________________________
  5926. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5927. Input Port Configuration:
  5928. port <inport>:
  5929. Eventsize = 2
  5930. New State: 0.3
  5931. Next scheduled internal transition at time 182.92
  5932. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5933. New State: inf
  5934. Output Port Configuration:
  5935. port <outport>:
  5936. Eventsize = 2
  5937. Next scheduled internal transition at time inf
  5938. __ Current Time: 182.66 __________________________________________
  5939. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5940. Input Port Configuration:
  5941. port <inport>:
  5942. Eventsize = 2
  5943. New State: 0.66
  5944. Next scheduled internal transition at time 183.32
  5945. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5946. New State: inf
  5947. Output Port Configuration:
  5948. port <outport>:
  5949. Eventsize = 2
  5950. Next scheduled internal transition at time inf
  5951. __ Current Time: 182.92 __________________________________________
  5952. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5953. Input Port Configuration:
  5954. port <inport>:
  5955. Eventsize = 2
  5956. New State: 0.3
  5957. Next scheduled internal transition at time 183.22
  5958. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5959. New State: inf
  5960. Output Port Configuration:
  5961. port <outport>:
  5962. Eventsize = 2
  5963. Next scheduled internal transition at time inf
  5964. __ Current Time: 183.00 __________________________________________
  5965. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  5966. Input Port Configuration:
  5967. port <inport>:
  5968. Eventsize = 2
  5969. New State: 0.66
  5970. Next scheduled internal transition at time 183.66
  5971. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  5972. New State: 1.0
  5973. Output Port Configuration:
  5974. port <outport>:
  5975. Eventsize = 2
  5976. Next scheduled internal transition at time 184.00
  5977. __ Current Time: 183.22 __________________________________________
  5978. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  5979. New State: inf
  5980. Output Port Configuration:
  5981. port <outport>:
  5982. Eventsize = 2
  5983. Next scheduled internal transition at time inf
  5984. __ Current Time: 183.32 __________________________________________
  5985. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  5986. Input Port Configuration:
  5987. port <inport>:
  5988. Eventsize = 2
  5989. New State: 0.3
  5990. Next scheduled internal transition at time 183.62
  5991. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  5992. New State: inf
  5993. Output Port Configuration:
  5994. port <outport>:
  5995. Eventsize = 2
  5996. Next scheduled internal transition at time inf
  5997. __ Current Time: 183.62 __________________________________________
  5998. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  5999. Input Port Configuration:
  6000. port <inport>:
  6001. Eventsize = 2
  6002. New State: 0.3
  6003. Next scheduled internal transition at time 183.92
  6004. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6005. New State: inf
  6006. Output Port Configuration:
  6007. port <outport>:
  6008. Eventsize = 2
  6009. Next scheduled internal transition at time inf
  6010. __ Current Time: 183.66 __________________________________________
  6011. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6012. Input Port Configuration:
  6013. port <inport>:
  6014. Eventsize = 2
  6015. New State: 0.66
  6016. Next scheduled internal transition at time 184.32
  6017. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6018. New State: inf
  6019. Output Port Configuration:
  6020. port <outport>:
  6021. Eventsize = 2
  6022. Next scheduled internal transition at time inf
  6023. __ Current Time: 183.92 __________________________________________
  6024. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6025. Input Port Configuration:
  6026. port <inport>:
  6027. Eventsize = 2
  6028. New State: 0.3
  6029. Next scheduled internal transition at time 184.22
  6030. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6031. New State: inf
  6032. Output Port Configuration:
  6033. port <outport>:
  6034. Eventsize = 2
  6035. Next scheduled internal transition at time inf
  6036. __ Current Time: 184.00 __________________________________________
  6037. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6038. Input Port Configuration:
  6039. port <inport>:
  6040. Eventsize = 2
  6041. New State: 0.66
  6042. Next scheduled internal transition at time 184.66
  6043. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6044. New State: 1.0
  6045. Output Port Configuration:
  6046. port <outport>:
  6047. Eventsize = 2
  6048. Next scheduled internal transition at time 185.00
  6049. __ Current Time: 184.22 __________________________________________
  6050. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6051. New State: inf
  6052. Output Port Configuration:
  6053. port <outport>:
  6054. Eventsize = 2
  6055. Next scheduled internal transition at time inf
  6056. __ Current Time: 184.32 __________________________________________
  6057. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6058. Input Port Configuration:
  6059. port <inport>:
  6060. Eventsize = 2
  6061. New State: 0.3
  6062. Next scheduled internal transition at time 184.62
  6063. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6064. New State: inf
  6065. Output Port Configuration:
  6066. port <outport>:
  6067. Eventsize = 2
  6068. Next scheduled internal transition at time inf
  6069. __ Current Time: 184.62 __________________________________________
  6070. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6071. Input Port Configuration:
  6072. port <inport>:
  6073. Eventsize = 2
  6074. New State: 0.3
  6075. Next scheduled internal transition at time 184.92
  6076. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6077. New State: inf
  6078. Output Port Configuration:
  6079. port <outport>:
  6080. Eventsize = 2
  6081. Next scheduled internal transition at time inf
  6082. __ Current Time: 184.66 __________________________________________
  6083. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6084. Input Port Configuration:
  6085. port <inport>:
  6086. Eventsize = 2
  6087. New State: 0.66
  6088. Next scheduled internal transition at time 185.32
  6089. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6090. New State: inf
  6091. Output Port Configuration:
  6092. port <outport>:
  6093. Eventsize = 2
  6094. Next scheduled internal transition at time inf
  6095. __ Current Time: 184.92 __________________________________________
  6096. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6097. Input Port Configuration:
  6098. port <inport>:
  6099. Eventsize = 2
  6100. New State: 0.3
  6101. Next scheduled internal transition at time 185.22
  6102. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6103. New State: inf
  6104. Output Port Configuration:
  6105. port <outport>:
  6106. Eventsize = 2
  6107. Next scheduled internal transition at time inf
  6108. __ Current Time: 185.00 __________________________________________
  6109. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6110. Input Port Configuration:
  6111. port <inport>:
  6112. Eventsize = 2
  6113. New State: 0.66
  6114. Next scheduled internal transition at time 185.66
  6115. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6116. New State: 1.0
  6117. Output Port Configuration:
  6118. port <outport>:
  6119. Eventsize = 2
  6120. Next scheduled internal transition at time 186.00
  6121. __ Current Time: 185.22 __________________________________________
  6122. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6123. New State: inf
  6124. Output Port Configuration:
  6125. port <outport>:
  6126. Eventsize = 2
  6127. Next scheduled internal transition at time inf
  6128. __ Current Time: 185.32 __________________________________________
  6129. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6130. Input Port Configuration:
  6131. port <inport>:
  6132. Eventsize = 2
  6133. New State: 0.3
  6134. Next scheduled internal transition at time 185.62
  6135. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6136. New State: inf
  6137. Output Port Configuration:
  6138. port <outport>:
  6139. Eventsize = 2
  6140. Next scheduled internal transition at time inf
  6141. __ Current Time: 185.62 __________________________________________
  6142. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6143. Input Port Configuration:
  6144. port <inport>:
  6145. Eventsize = 2
  6146. New State: 0.3
  6147. Next scheduled internal transition at time 185.92
  6148. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6149. New State: inf
  6150. Output Port Configuration:
  6151. port <outport>:
  6152. Eventsize = 2
  6153. Next scheduled internal transition at time inf
  6154. __ Current Time: 185.66 __________________________________________
  6155. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6156. Input Port Configuration:
  6157. port <inport>:
  6158. Eventsize = 2
  6159. New State: 0.66
  6160. Next scheduled internal transition at time 186.32
  6161. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6162. New State: inf
  6163. Output Port Configuration:
  6164. port <outport>:
  6165. Eventsize = 2
  6166. Next scheduled internal transition at time inf
  6167. __ Current Time: 185.92 __________________________________________
  6168. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6169. Input Port Configuration:
  6170. port <inport>:
  6171. Eventsize = 2
  6172. New State: 0.3
  6173. Next scheduled internal transition at time 186.22
  6174. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6175. New State: inf
  6176. Output Port Configuration:
  6177. port <outport>:
  6178. Eventsize = 2
  6179. Next scheduled internal transition at time inf
  6180. __ Current Time: 186.00 __________________________________________
  6181. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6182. Input Port Configuration:
  6183. port <inport>:
  6184. Eventsize = 2
  6185. New State: 0.66
  6186. Next scheduled internal transition at time 186.66
  6187. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6188. New State: 1.0
  6189. Output Port Configuration:
  6190. port <outport>:
  6191. Eventsize = 2
  6192. Next scheduled internal transition at time 187.00
  6193. __ Current Time: 186.22 __________________________________________
  6194. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6195. New State: inf
  6196. Output Port Configuration:
  6197. port <outport>:
  6198. Eventsize = 2
  6199. Next scheduled internal transition at time inf
  6200. __ Current Time: 186.32 __________________________________________
  6201. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6202. Input Port Configuration:
  6203. port <inport>:
  6204. Eventsize = 2
  6205. New State: 0.3
  6206. Next scheduled internal transition at time 186.62
  6207. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6208. New State: inf
  6209. Output Port Configuration:
  6210. port <outport>:
  6211. Eventsize = 2
  6212. Next scheduled internal transition at time inf
  6213. __ Current Time: 186.62 __________________________________________
  6214. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6215. Input Port Configuration:
  6216. port <inport>:
  6217. Eventsize = 2
  6218. New State: 0.3
  6219. Next scheduled internal transition at time 186.92
  6220. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6221. New State: inf
  6222. Output Port Configuration:
  6223. port <outport>:
  6224. Eventsize = 2
  6225. Next scheduled internal transition at time inf
  6226. __ Current Time: 186.66 __________________________________________
  6227. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6228. Input Port Configuration:
  6229. port <inport>:
  6230. Eventsize = 2
  6231. New State: 0.66
  6232. Next scheduled internal transition at time 187.32
  6233. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6234. New State: inf
  6235. Output Port Configuration:
  6236. port <outport>:
  6237. Eventsize = 2
  6238. Next scheduled internal transition at time inf
  6239. __ Current Time: 186.92 __________________________________________
  6240. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6241. Input Port Configuration:
  6242. port <inport>:
  6243. Eventsize = 2
  6244. New State: 0.3
  6245. Next scheduled internal transition at time 187.22
  6246. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6247. New State: inf
  6248. Output Port Configuration:
  6249. port <outport>:
  6250. Eventsize = 2
  6251. Next scheduled internal transition at time inf
  6252. __ Current Time: 187.00 __________________________________________
  6253. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6254. Input Port Configuration:
  6255. port <inport>:
  6256. Eventsize = 2
  6257. New State: 0.66
  6258. Next scheduled internal transition at time 187.66
  6259. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6260. New State: 1.0
  6261. Output Port Configuration:
  6262. port <outport>:
  6263. Eventsize = 2
  6264. Next scheduled internal transition at time 188.00
  6265. __ Current Time: 187.22 __________________________________________
  6266. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6267. New State: inf
  6268. Output Port Configuration:
  6269. port <outport>:
  6270. Eventsize = 2
  6271. Next scheduled internal transition at time inf
  6272. __ Current Time: 187.32 __________________________________________
  6273. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6274. Input Port Configuration:
  6275. port <inport>:
  6276. Eventsize = 2
  6277. New State: 0.3
  6278. Next scheduled internal transition at time 187.62
  6279. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6280. New State: inf
  6281. Output Port Configuration:
  6282. port <outport>:
  6283. Eventsize = 2
  6284. Next scheduled internal transition at time inf
  6285. __ Current Time: 187.62 __________________________________________
  6286. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6287. Input Port Configuration:
  6288. port <inport>:
  6289. Eventsize = 2
  6290. New State: 0.3
  6291. Next scheduled internal transition at time 187.92
  6292. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6293. New State: inf
  6294. Output Port Configuration:
  6295. port <outport>:
  6296. Eventsize = 2
  6297. Next scheduled internal transition at time inf
  6298. __ Current Time: 187.66 __________________________________________
  6299. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6300. Input Port Configuration:
  6301. port <inport>:
  6302. Eventsize = 2
  6303. New State: 0.66
  6304. Next scheduled internal transition at time 188.32
  6305. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6306. New State: inf
  6307. Output Port Configuration:
  6308. port <outport>:
  6309. Eventsize = 2
  6310. Next scheduled internal transition at time inf
  6311. __ Current Time: 187.92 __________________________________________
  6312. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6313. Input Port Configuration:
  6314. port <inport>:
  6315. Eventsize = 2
  6316. New State: 0.3
  6317. Next scheduled internal transition at time 188.22
  6318. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6319. New State: inf
  6320. Output Port Configuration:
  6321. port <outport>:
  6322. Eventsize = 2
  6323. Next scheduled internal transition at time inf
  6324. __ Current Time: 188.00 __________________________________________
  6325. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6326. Input Port Configuration:
  6327. port <inport>:
  6328. Eventsize = 2
  6329. New State: 0.66
  6330. Next scheduled internal transition at time 188.66
  6331. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6332. New State: 1.0
  6333. Output Port Configuration:
  6334. port <outport>:
  6335. Eventsize = 2
  6336. Next scheduled internal transition at time 189.00
  6337. __ Current Time: 188.22 __________________________________________
  6338. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6339. New State: inf
  6340. Output Port Configuration:
  6341. port <outport>:
  6342. Eventsize = 2
  6343. Next scheduled internal transition at time inf
  6344. __ Current Time: 188.32 __________________________________________
  6345. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6346. Input Port Configuration:
  6347. port <inport>:
  6348. Eventsize = 2
  6349. New State: 0.3
  6350. Next scheduled internal transition at time 188.62
  6351. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6352. New State: inf
  6353. Output Port Configuration:
  6354. port <outport>:
  6355. Eventsize = 2
  6356. Next scheduled internal transition at time inf
  6357. __ Current Time: 188.62 __________________________________________
  6358. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6359. Input Port Configuration:
  6360. port <inport>:
  6361. Eventsize = 2
  6362. New State: 0.3
  6363. Next scheduled internal transition at time 188.92
  6364. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6365. New State: inf
  6366. Output Port Configuration:
  6367. port <outport>:
  6368. Eventsize = 2
  6369. Next scheduled internal transition at time inf
  6370. __ Current Time: 188.66 __________________________________________
  6371. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6372. Input Port Configuration:
  6373. port <inport>:
  6374. Eventsize = 2
  6375. New State: 0.66
  6376. Next scheduled internal transition at time 189.32
  6377. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6378. New State: inf
  6379. Output Port Configuration:
  6380. port <outport>:
  6381. Eventsize = 2
  6382. Next scheduled internal transition at time inf
  6383. __ Current Time: 188.92 __________________________________________
  6384. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6385. Input Port Configuration:
  6386. port <inport>:
  6387. Eventsize = 2
  6388. New State: 0.3
  6389. Next scheduled internal transition at time 189.22
  6390. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6391. New State: inf
  6392. Output Port Configuration:
  6393. port <outport>:
  6394. Eventsize = 2
  6395. Next scheduled internal transition at time inf
  6396. __ Current Time: 189.00 __________________________________________
  6397. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6398. Input Port Configuration:
  6399. port <inport>:
  6400. Eventsize = 2
  6401. New State: 0.66
  6402. Next scheduled internal transition at time 189.66
  6403. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6404. New State: 1.0
  6405. Output Port Configuration:
  6406. port <outport>:
  6407. Eventsize = 2
  6408. Next scheduled internal transition at time 190.00
  6409. __ Current Time: 189.22 __________________________________________
  6410. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6411. New State: inf
  6412. Output Port Configuration:
  6413. port <outport>:
  6414. Eventsize = 2
  6415. Next scheduled internal transition at time inf
  6416. __ Current Time: 189.32 __________________________________________
  6417. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6418. Input Port Configuration:
  6419. port <inport>:
  6420. Eventsize = 2
  6421. New State: 0.3
  6422. Next scheduled internal transition at time 189.62
  6423. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6424. New State: inf
  6425. Output Port Configuration:
  6426. port <outport>:
  6427. Eventsize = 2
  6428. Next scheduled internal transition at time inf
  6429. __ Current Time: 189.62 __________________________________________
  6430. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6431. Input Port Configuration:
  6432. port <inport>:
  6433. Eventsize = 2
  6434. New State: 0.3
  6435. Next scheduled internal transition at time 189.92
  6436. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6437. New State: inf
  6438. Output Port Configuration:
  6439. port <outport>:
  6440. Eventsize = 2
  6441. Next scheduled internal transition at time inf
  6442. __ Current Time: 189.66 __________________________________________
  6443. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6444. Input Port Configuration:
  6445. port <inport>:
  6446. Eventsize = 2
  6447. New State: 0.66
  6448. Next scheduled internal transition at time 190.32
  6449. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6450. New State: inf
  6451. Output Port Configuration:
  6452. port <outport>:
  6453. Eventsize = 2
  6454. Next scheduled internal transition at time inf
  6455. __ Current Time: 189.92 __________________________________________
  6456. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6457. Input Port Configuration:
  6458. port <inport>:
  6459. Eventsize = 2
  6460. New State: 0.3
  6461. Next scheduled internal transition at time 190.22
  6462. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6463. New State: inf
  6464. Output Port Configuration:
  6465. port <outport>:
  6466. Eventsize = 2
  6467. Next scheduled internal transition at time inf
  6468. __ Current Time: 190.00 __________________________________________
  6469. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6470. Input Port Configuration:
  6471. port <inport>:
  6472. Eventsize = 2
  6473. New State: 0.66
  6474. Next scheduled internal transition at time 190.66
  6475. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6476. New State: 1.0
  6477. Output Port Configuration:
  6478. port <outport>:
  6479. Eventsize = 2
  6480. Next scheduled internal transition at time 191.00
  6481. __ Current Time: 190.22 __________________________________________
  6482. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6483. New State: inf
  6484. Output Port Configuration:
  6485. port <outport>:
  6486. Eventsize = 2
  6487. Next scheduled internal transition at time inf
  6488. __ Current Time: 190.32 __________________________________________
  6489. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6490. Input Port Configuration:
  6491. port <inport>:
  6492. Eventsize = 2
  6493. New State: 0.3
  6494. Next scheduled internal transition at time 190.62
  6495. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6496. New State: inf
  6497. Output Port Configuration:
  6498. port <outport>:
  6499. Eventsize = 2
  6500. Next scheduled internal transition at time inf
  6501. __ Current Time: 190.62 __________________________________________
  6502. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6503. Input Port Configuration:
  6504. port <inport>:
  6505. Eventsize = 2
  6506. New State: 0.3
  6507. Next scheduled internal transition at time 190.92
  6508. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6509. New State: inf
  6510. Output Port Configuration:
  6511. port <outport>:
  6512. Eventsize = 2
  6513. Next scheduled internal transition at time inf
  6514. __ Current Time: 190.66 __________________________________________
  6515. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6516. Input Port Configuration:
  6517. port <inport>:
  6518. Eventsize = 2
  6519. New State: 0.66
  6520. Next scheduled internal transition at time 191.32
  6521. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6522. New State: inf
  6523. Output Port Configuration:
  6524. port <outport>:
  6525. Eventsize = 2
  6526. Next scheduled internal transition at time inf
  6527. __ Current Time: 190.92 __________________________________________
  6528. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6529. Input Port Configuration:
  6530. port <inport>:
  6531. Eventsize = 2
  6532. New State: 0.3
  6533. Next scheduled internal transition at time 191.22
  6534. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6535. New State: inf
  6536. Output Port Configuration:
  6537. port <outport>:
  6538. Eventsize = 2
  6539. Next scheduled internal transition at time inf
  6540. __ Current Time: 191.00 __________________________________________
  6541. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6542. Input Port Configuration:
  6543. port <inport>:
  6544. Eventsize = 2
  6545. New State: 0.66
  6546. Next scheduled internal transition at time 191.66
  6547. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6548. New State: 1.0
  6549. Output Port Configuration:
  6550. port <outport>:
  6551. Eventsize = 2
  6552. Next scheduled internal transition at time 192.00
  6553. __ Current Time: 191.22 __________________________________________
  6554. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6555. New State: inf
  6556. Output Port Configuration:
  6557. port <outport>:
  6558. Eventsize = 2
  6559. Next scheduled internal transition at time inf
  6560. __ Current Time: 191.32 __________________________________________
  6561. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6562. Input Port Configuration:
  6563. port <inport>:
  6564. Eventsize = 2
  6565. New State: 0.3
  6566. Next scheduled internal transition at time 191.62
  6567. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6568. New State: inf
  6569. Output Port Configuration:
  6570. port <outport>:
  6571. Eventsize = 2
  6572. Next scheduled internal transition at time inf
  6573. __ Current Time: 191.62 __________________________________________
  6574. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6575. Input Port Configuration:
  6576. port <inport>:
  6577. Eventsize = 2
  6578. New State: 0.3
  6579. Next scheduled internal transition at time 191.92
  6580. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6581. New State: inf
  6582. Output Port Configuration:
  6583. port <outport>:
  6584. Eventsize = 2
  6585. Next scheduled internal transition at time inf
  6586. __ Current Time: 191.66 __________________________________________
  6587. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6588. Input Port Configuration:
  6589. port <inport>:
  6590. Eventsize = 2
  6591. New State: 0.66
  6592. Next scheduled internal transition at time 192.32
  6593. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6594. New State: inf
  6595. Output Port Configuration:
  6596. port <outport>:
  6597. Eventsize = 2
  6598. Next scheduled internal transition at time inf
  6599. __ Current Time: 191.92 __________________________________________
  6600. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6601. Input Port Configuration:
  6602. port <inport>:
  6603. Eventsize = 2
  6604. New State: 0.3
  6605. Next scheduled internal transition at time 192.22
  6606. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6607. New State: inf
  6608. Output Port Configuration:
  6609. port <outport>:
  6610. Eventsize = 2
  6611. Next scheduled internal transition at time inf
  6612. __ Current Time: 192.00 __________________________________________
  6613. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6614. Input Port Configuration:
  6615. port <inport>:
  6616. Eventsize = 2
  6617. New State: 0.66
  6618. Next scheduled internal transition at time 192.66
  6619. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6620. New State: 1.0
  6621. Output Port Configuration:
  6622. port <outport>:
  6623. Eventsize = 2
  6624. Next scheduled internal transition at time 193.00
  6625. __ Current Time: 192.22 __________________________________________
  6626. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6627. New State: inf
  6628. Output Port Configuration:
  6629. port <outport>:
  6630. Eventsize = 2
  6631. Next scheduled internal transition at time inf
  6632. __ Current Time: 192.32 __________________________________________
  6633. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6634. Input Port Configuration:
  6635. port <inport>:
  6636. Eventsize = 2
  6637. New State: 0.3
  6638. Next scheduled internal transition at time 192.62
  6639. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6640. New State: inf
  6641. Output Port Configuration:
  6642. port <outport>:
  6643. Eventsize = 2
  6644. Next scheduled internal transition at time inf
  6645. __ Current Time: 192.62 __________________________________________
  6646. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6647. Input Port Configuration:
  6648. port <inport>:
  6649. Eventsize = 2
  6650. New State: 0.3
  6651. Next scheduled internal transition at time 192.92
  6652. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6653. New State: inf
  6654. Output Port Configuration:
  6655. port <outport>:
  6656. Eventsize = 2
  6657. Next scheduled internal transition at time inf
  6658. __ Current Time: 192.66 __________________________________________
  6659. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6660. Input Port Configuration:
  6661. port <inport>:
  6662. Eventsize = 2
  6663. New State: 0.66
  6664. Next scheduled internal transition at time 193.32
  6665. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6666. New State: inf
  6667. Output Port Configuration:
  6668. port <outport>:
  6669. Eventsize = 2
  6670. Next scheduled internal transition at time inf
  6671. __ Current Time: 192.92 __________________________________________
  6672. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6673. Input Port Configuration:
  6674. port <inport>:
  6675. Eventsize = 2
  6676. New State: 0.3
  6677. Next scheduled internal transition at time 193.22
  6678. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6679. New State: inf
  6680. Output Port Configuration:
  6681. port <outport>:
  6682. Eventsize = 2
  6683. Next scheduled internal transition at time inf
  6684. __ Current Time: 193.00 __________________________________________
  6685. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6686. Input Port Configuration:
  6687. port <inport>:
  6688. Eventsize = 2
  6689. New State: 0.66
  6690. Next scheduled internal transition at time 193.66
  6691. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6692. New State: 1.0
  6693. Output Port Configuration:
  6694. port <outport>:
  6695. Eventsize = 2
  6696. Next scheduled internal transition at time 194.00
  6697. __ Current Time: 193.22 __________________________________________
  6698. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6699. New State: inf
  6700. Output Port Configuration:
  6701. port <outport>:
  6702. Eventsize = 2
  6703. Next scheduled internal transition at time inf
  6704. __ Current Time: 193.32 __________________________________________
  6705. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6706. Input Port Configuration:
  6707. port <inport>:
  6708. Eventsize = 2
  6709. New State: 0.3
  6710. Next scheduled internal transition at time 193.62
  6711. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6712. New State: inf
  6713. Output Port Configuration:
  6714. port <outport>:
  6715. Eventsize = 2
  6716. Next scheduled internal transition at time inf
  6717. __ Current Time: 193.62 __________________________________________
  6718. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6719. Input Port Configuration:
  6720. port <inport>:
  6721. Eventsize = 2
  6722. New State: 0.3
  6723. Next scheduled internal transition at time 193.92
  6724. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6725. New State: inf
  6726. Output Port Configuration:
  6727. port <outport>:
  6728. Eventsize = 2
  6729. Next scheduled internal transition at time inf
  6730. __ Current Time: 193.66 __________________________________________
  6731. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6732. Input Port Configuration:
  6733. port <inport>:
  6734. Eventsize = 2
  6735. New State: 0.66
  6736. Next scheduled internal transition at time 194.32
  6737. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6738. New State: inf
  6739. Output Port Configuration:
  6740. port <outport>:
  6741. Eventsize = 2
  6742. Next scheduled internal transition at time inf
  6743. __ Current Time: 193.92 __________________________________________
  6744. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6745. Input Port Configuration:
  6746. port <inport>:
  6747. Eventsize = 2
  6748. New State: 0.3
  6749. Next scheduled internal transition at time 194.22
  6750. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6751. New State: inf
  6752. Output Port Configuration:
  6753. port <outport>:
  6754. Eventsize = 2
  6755. Next scheduled internal transition at time inf
  6756. __ Current Time: 194.00 __________________________________________
  6757. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6758. Input Port Configuration:
  6759. port <inport>:
  6760. Eventsize = 2
  6761. New State: 0.66
  6762. Next scheduled internal transition at time 194.66
  6763. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6764. New State: 1.0
  6765. Output Port Configuration:
  6766. port <outport>:
  6767. Eventsize = 2
  6768. Next scheduled internal transition at time 195.00
  6769. __ Current Time: 194.22 __________________________________________
  6770. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6771. New State: inf
  6772. Output Port Configuration:
  6773. port <outport>:
  6774. Eventsize = 2
  6775. Next scheduled internal transition at time inf
  6776. __ Current Time: 194.32 __________________________________________
  6777. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6778. Input Port Configuration:
  6779. port <inport>:
  6780. Eventsize = 2
  6781. New State: 0.3
  6782. Next scheduled internal transition at time 194.62
  6783. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6784. New State: inf
  6785. Output Port Configuration:
  6786. port <outport>:
  6787. Eventsize = 2
  6788. Next scheduled internal transition at time inf
  6789. __ Current Time: 194.62 __________________________________________
  6790. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6791. Input Port Configuration:
  6792. port <inport>:
  6793. Eventsize = 2
  6794. New State: 0.3
  6795. Next scheduled internal transition at time 194.92
  6796. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6797. New State: inf
  6798. Output Port Configuration:
  6799. port <outport>:
  6800. Eventsize = 2
  6801. Next scheduled internal transition at time inf
  6802. __ Current Time: 194.66 __________________________________________
  6803. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6804. Input Port Configuration:
  6805. port <inport>:
  6806. Eventsize = 2
  6807. New State: 0.66
  6808. Next scheduled internal transition at time 195.32
  6809. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6810. New State: inf
  6811. Output Port Configuration:
  6812. port <outport>:
  6813. Eventsize = 2
  6814. Next scheduled internal transition at time inf
  6815. __ Current Time: 194.92 __________________________________________
  6816. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6817. Input Port Configuration:
  6818. port <inport>:
  6819. Eventsize = 2
  6820. New State: 0.3
  6821. Next scheduled internal transition at time 195.22
  6822. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6823. New State: inf
  6824. Output Port Configuration:
  6825. port <outport>:
  6826. Eventsize = 2
  6827. Next scheduled internal transition at time inf
  6828. __ Current Time: 195.00 __________________________________________
  6829. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6830. Input Port Configuration:
  6831. port <inport>:
  6832. Eventsize = 2
  6833. New State: 0.66
  6834. Next scheduled internal transition at time 195.66
  6835. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6836. New State: 1.0
  6837. Output Port Configuration:
  6838. port <outport>:
  6839. Eventsize = 2
  6840. Next scheduled internal transition at time 196.00
  6841. __ Current Time: 195.22 __________________________________________
  6842. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6843. New State: inf
  6844. Output Port Configuration:
  6845. port <outport>:
  6846. Eventsize = 2
  6847. Next scheduled internal transition at time inf
  6848. __ Current Time: 195.32 __________________________________________
  6849. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6850. Input Port Configuration:
  6851. port <inport>:
  6852. Eventsize = 2
  6853. New State: 0.3
  6854. Next scheduled internal transition at time 195.62
  6855. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6856. New State: inf
  6857. Output Port Configuration:
  6858. port <outport>:
  6859. Eventsize = 2
  6860. Next scheduled internal transition at time inf
  6861. __ Current Time: 195.62 __________________________________________
  6862. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6863. Input Port Configuration:
  6864. port <inport>:
  6865. Eventsize = 2
  6866. New State: 0.3
  6867. Next scheduled internal transition at time 195.92
  6868. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6869. New State: inf
  6870. Output Port Configuration:
  6871. port <outport>:
  6872. Eventsize = 2
  6873. Next scheduled internal transition at time inf
  6874. __ Current Time: 195.66 __________________________________________
  6875. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6876. Input Port Configuration:
  6877. port <inport>:
  6878. Eventsize = 2
  6879. New State: 0.66
  6880. Next scheduled internal transition at time 196.32
  6881. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6882. New State: inf
  6883. Output Port Configuration:
  6884. port <outport>:
  6885. Eventsize = 2
  6886. Next scheduled internal transition at time inf
  6887. __ Current Time: 195.92 __________________________________________
  6888. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6889. Input Port Configuration:
  6890. port <inport>:
  6891. Eventsize = 2
  6892. New State: 0.3
  6893. Next scheduled internal transition at time 196.22
  6894. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6895. New State: inf
  6896. Output Port Configuration:
  6897. port <outport>:
  6898. Eventsize = 2
  6899. Next scheduled internal transition at time inf
  6900. __ Current Time: 196.00 __________________________________________
  6901. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6902. Input Port Configuration:
  6903. port <inport>:
  6904. Eventsize = 2
  6905. New State: 0.66
  6906. Next scheduled internal transition at time 196.66
  6907. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6908. New State: 1.0
  6909. Output Port Configuration:
  6910. port <outport>:
  6911. Eventsize = 2
  6912. Next scheduled internal transition at time 197.00
  6913. __ Current Time: 196.22 __________________________________________
  6914. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6915. New State: inf
  6916. Output Port Configuration:
  6917. port <outport>:
  6918. Eventsize = 2
  6919. Next scheduled internal transition at time inf
  6920. __ Current Time: 196.32 __________________________________________
  6921. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6922. Input Port Configuration:
  6923. port <inport>:
  6924. Eventsize = 2
  6925. New State: 0.3
  6926. Next scheduled internal transition at time 196.62
  6927. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6928. New State: inf
  6929. Output Port Configuration:
  6930. port <outport>:
  6931. Eventsize = 2
  6932. Next scheduled internal transition at time inf
  6933. __ Current Time: 196.62 __________________________________________
  6934. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6935. Input Port Configuration:
  6936. port <inport>:
  6937. Eventsize = 2
  6938. New State: 0.3
  6939. Next scheduled internal transition at time 196.92
  6940. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6941. New State: inf
  6942. Output Port Configuration:
  6943. port <outport>:
  6944. Eventsize = 2
  6945. Next scheduled internal transition at time inf
  6946. __ Current Time: 196.66 __________________________________________
  6947. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  6948. Input Port Configuration:
  6949. port <inport>:
  6950. Eventsize = 2
  6951. New State: 0.66
  6952. Next scheduled internal transition at time 197.32
  6953. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6954. New State: inf
  6955. Output Port Configuration:
  6956. port <outport>:
  6957. Eventsize = 2
  6958. Next scheduled internal transition at time inf
  6959. __ Current Time: 196.92 __________________________________________
  6960. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6961. Input Port Configuration:
  6962. port <inport>:
  6963. Eventsize = 2
  6964. New State: 0.3
  6965. Next scheduled internal transition at time 197.22
  6966. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  6967. New State: inf
  6968. Output Port Configuration:
  6969. port <outport>:
  6970. Eventsize = 2
  6971. Next scheduled internal transition at time inf
  6972. __ Current Time: 197.00 __________________________________________
  6973. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  6974. Input Port Configuration:
  6975. port <inport>:
  6976. Eventsize = 2
  6977. New State: 0.66
  6978. Next scheduled internal transition at time 197.66
  6979. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  6980. New State: 1.0
  6981. Output Port Configuration:
  6982. port <outport>:
  6983. Eventsize = 2
  6984. Next scheduled internal transition at time 198.00
  6985. __ Current Time: 197.22 __________________________________________
  6986. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  6987. New State: inf
  6988. Output Port Configuration:
  6989. port <outport>:
  6990. Eventsize = 2
  6991. Next scheduled internal transition at time inf
  6992. __ Current Time: 197.32 __________________________________________
  6993. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  6994. Input Port Configuration:
  6995. port <inport>:
  6996. Eventsize = 2
  6997. New State: 0.3
  6998. Next scheduled internal transition at time 197.62
  6999. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  7000. New State: inf
  7001. Output Port Configuration:
  7002. port <outport>:
  7003. Eventsize = 2
  7004. Next scheduled internal transition at time inf
  7005. __ Current Time: 197.62 __________________________________________
  7006. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  7007. Input Port Configuration:
  7008. port <inport>:
  7009. Eventsize = 2
  7010. New State: 0.3
  7011. Next scheduled internal transition at time 197.92
  7012. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  7013. New State: inf
  7014. Output Port Configuration:
  7015. port <outport>:
  7016. Eventsize = 2
  7017. Next scheduled internal transition at time inf
  7018. __ Current Time: 197.66 __________________________________________
  7019. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  7020. Input Port Configuration:
  7021. port <inport>:
  7022. Eventsize = 2
  7023. New State: 0.66
  7024. Next scheduled internal transition at time 198.32
  7025. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  7026. New State: inf
  7027. Output Port Configuration:
  7028. port <outport>:
  7029. Eventsize = 2
  7030. Next scheduled internal transition at time inf
  7031. __ Current Time: 197.92 __________________________________________
  7032. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  7033. Input Port Configuration:
  7034. port <inport>:
  7035. Eventsize = 2
  7036. New State: 0.3
  7037. Next scheduled internal transition at time 198.22
  7038. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  7039. New State: inf
  7040. Output Port Configuration:
  7041. port <outport>:
  7042. Eventsize = 2
  7043. Next scheduled internal transition at time inf
  7044. __ Current Time: 198.00 __________________________________________
  7045. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  7046. Input Port Configuration:
  7047. port <inport>:
  7048. Eventsize = 2
  7049. New State: 0.66
  7050. Next scheduled internal transition at time 198.66
  7051. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  7052. New State: 1.0
  7053. Output Port Configuration:
  7054. port <outport>:
  7055. Eventsize = 2
  7056. Next scheduled internal transition at time 199.00
  7057. __ Current Time: 198.22 __________________________________________
  7058. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  7059. New State: inf
  7060. Output Port Configuration:
  7061. port <outport>:
  7062. Eventsize = 2
  7063. Next scheduled internal transition at time inf
  7064. __ Current Time: 198.32 __________________________________________
  7065. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  7066. Input Port Configuration:
  7067. port <inport>:
  7068. Eventsize = 2
  7069. New State: 0.3
  7070. Next scheduled internal transition at time 198.62
  7071. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  7072. New State: inf
  7073. Output Port Configuration:
  7074. port <outport>:
  7075. Eventsize = 2
  7076. Next scheduled internal transition at time inf
  7077. __ Current Time: 198.62 __________________________________________
  7078. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  7079. Input Port Configuration:
  7080. port <inport>:
  7081. Eventsize = 2
  7082. New State: 0.3
  7083. Next scheduled internal transition at time 198.92
  7084. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  7085. New State: inf
  7086. Output Port Configuration:
  7087. port <outport>:
  7088. Eventsize = 2
  7089. Next scheduled internal transition at time inf
  7090. __ Current Time: 198.66 __________________________________________
  7091. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  7092. Input Port Configuration:
  7093. port <inport>:
  7094. Eventsize = 2
  7095. New State: 0.66
  7096. Next scheduled internal transition at time 199.32
  7097. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  7098. New State: inf
  7099. Output Port Configuration:
  7100. port <outport>:
  7101. Eventsize = 2
  7102. Next scheduled internal transition at time inf
  7103. __ Current Time: 198.92 __________________________________________
  7104. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  7105. Input Port Configuration:
  7106. port <inport>:
  7107. Eventsize = 2
  7108. New State: 0.3
  7109. Next scheduled internal transition at time 199.22
  7110. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  7111. New State: inf
  7112. Output Port Configuration:
  7113. port <outport>:
  7114. Eventsize = 2
  7115. Next scheduled internal transition at time inf
  7116. __ Current Time: 199.00 __________________________________________
  7117. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  7118. Input Port Configuration:
  7119. port <inport>:
  7120. Eventsize = 2
  7121. New State: 0.66
  7122. Next scheduled internal transition at time 199.66
  7123. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  7124. New State: 1.0
  7125. Output Port Configuration:
  7126. port <outport>:
  7127. Eventsize = 2
  7128. Next scheduled internal transition at time 200.00
  7129. __ Current Time: 199.22 __________________________________________
  7130. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  7131. New State: inf
  7132. Output Port Configuration:
  7133. port <outport>:
  7134. Eventsize = 2
  7135. Next scheduled internal transition at time inf
  7136. __ Current Time: 199.32 __________________________________________
  7137. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  7138. Input Port Configuration:
  7139. port <inport>:
  7140. Eventsize = 2
  7141. New State: 0.3
  7142. Next scheduled internal transition at time 199.62
  7143. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  7144. New State: inf
  7145. Output Port Configuration:
  7146. port <outport>:
  7147. Eventsize = 2
  7148. Next scheduled internal transition at time inf
  7149. __ Current Time: 199.62 __________________________________________
  7150. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  7151. Input Port Configuration:
  7152. port <inport>:
  7153. Eventsize = 2
  7154. New State: 0.3
  7155. Next scheduled internal transition at time 199.92
  7156. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor0>
  7157. New State: inf
  7158. Output Port Configuration:
  7159. port <outport>:
  7160. Eventsize = 2
  7161. Next scheduled internal transition at time inf
  7162. __ Current Time: 199.66 __________________________________________
  7163. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor1>
  7164. Input Port Configuration:
  7165. port <inport>:
  7166. Eventsize = 2
  7167. New State: 0.66
  7168. Next scheduled internal transition at time 200.32
  7169. INTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  7170. New State: inf
  7171. Output Port Configuration:
  7172. port <outport>:
  7173. Eventsize = 2
  7174. Next scheduled internal transition at time inf
  7175. __ Current Time: 199.92 __________________________________________
  7176. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor2>
  7177. Input Port Configuration:
  7178. port <inport>:
  7179. Eventsize = 2
  7180. New State: 0.3
  7181. Next scheduled internal transition at time 200.22
  7182. INTERNAL TRANSITION in model <Chain.CoupledProcessor_3.Processor1>
  7183. New State: inf
  7184. Output Port Configuration:
  7185. port <outport>:
  7186. Eventsize = 2
  7187. Next scheduled internal transition at time inf
  7188. __ Current Time: 200.00 __________________________________________
  7189. EXTERNAL TRANSITION in model <Chain.CoupledProcessor_2.Processor0>
  7190. Input Port Configuration:
  7191. port <inport>:
  7192. Eventsize = 2
  7193. New State: 0.66
  7194. Next scheduled internal transition at time 200.66
  7195. INTERNAL TRANSITION in model <Chain.CoupledGenerator.Generator>
  7196. New State: 1.0
  7197. Output Port Configuration:
  7198. port <outport>:
  7199. Eventsize = 2
  7200. Next scheduled internal transition at time 201.00