To compare two versions of the same SCCS file: /usr/sccs/sccsdiff -r1.3 -r1.5 s.foo.c SCCS/s.foo.c: 1.3 vs. 1.5 21c21 < static char exname[] = "Template Xternals"; --- > static char exname[] = "Template XTernals"; . This displays a line by line difference between versions 1.3 and 1.5 of the SCCS file s.foo.c which is in the current directory. ... To compare two versions of two or more SCCS files: /usr/sccs/sccsdiff -r1.2 -r1.3 s.part[1-3].c . ...
... Unlike C/C++ compilers and many other analysis tools it does not detect syntax errors in the code. ... Proposed directory for placement: /pub/os2/dev/cplusplus Your name: dbanet Email address: admin@dbanet.org Program contact name: (same) Program contact email: (same) Program URL: http://cppcheck.sourceforge.net/ Would you like the contact email address included in listings? yes Operating System/Version: MCP2 or higher Additional requirements: libc065 libstdc++ libqt4 libqt4-gui Replaces: (none) ...
... Influence of Internal Structure of Polycrystalline Copper on Its Nonlinear Elastic and Acoustic Properties . A.I.Korobov, A.N.Ekonomov (Department of Acoustics, Faculty of Physics, Moscow State University, Moscow, Russia) . ... During elastic and plastic deformation (with application of unloading and subsequent loading) the complex research (static, quasistatic and dynamic methods) of mechanical and acoustic properties of copper wires with various initial internal structure is performed. ...
... Online Services | ... Two movies presented the dynamic deformation of 12 я, formed in state with Я J = 2 + in the reaction 12 я(d,d’) 12 я of inelastic scattering of deuterons with energy е d = 15.3 лЩб, were produced on the base of the results of theoretical calculations [1] . Those were carried out for two angles of scattered deuterons escape - d = 81° Х 160°. ... Deuteron scattering on the angle 81°. Deuteron scattering on the angle 160°. ... CDFE Head: Vladimir V. Varlamov . ...
M.H. Shulman, 2006 Michael H. Shulman ON AN IMPORTANT COSMOLOGICAL PROBLEMS SOLUTION IN THE FRAME OF A NEW COSMOLOGICAL MODEL Abstract A modification of the Einstein Friedmann cosmological model allows to solve a basic cosmological fundamental and observational problems, such as these ones: the vacuum energy and dark energy problems, horizon problem, flatness problem, supernovae low brightness at the high redshift (z > 1). ... New cosmological model The upper curve on the figure 2 is linear. ...
[
Текст
]
Ссылки http://temporology.bio.msu.ru/EREPORTS/shulman_important.pdf -- 180.5 Кб -- 27.02.2014
[
Текст
]
Ссылки http://www.chronos.msu.ru/old/EREPORTS/shulman_important.pdf -- 180.5 Кб -- 14.12.2013
[
Текст
]
Ссылки http://chronos.msu.ru/old/EREPORTS/shulman_important.pdf -- 180.5 Кб -- 14.12.2013 Похожие документы
... DOI: 10.1063/1.3227740 The behavior of the average velocity for the time varying oval-shaped billiard with the breathing geometry is considered. ... However for case ii , i.e., the bouncer model, which consists of a classical particle falling in a constant gravitational field and suffering elastic collisions with a flat and moving plate, depending on the initial conditions as well as on the control parameters, the particle can experience the unlimited energy growth. ... THE MODEL AND THE MAPPING FIG...
[
Текст
]
Ссылки http://chaos.phys.msu.ru/loskutov/PDF/CHAOEH193033142_1.pdf -- 938.3 Кб -- 31.01.2011 Похожие документы
An Evolving Algebra Approach to Formal Description of one class of Automata Networks V. M. Severyanov 1 Laboratory of Information Technologies Joint Institute for Nuclear Research 141980 Dubna, Moscow region, Russia Abstract The Automata Networks considered here and called Hyperbolic Cellu lar Automata are based on Iterated Function Systems and originally were designed for constructing fractal objects. ... C is a set of cells; . ... System states are represented here as static algebras. ...
[
Текст
]
Ссылки http://acat02.sinp.msu.ru/presentations/severyanov/Severyanov-poster.ps -- 239.8 Кб -- 18.07.2002 Похожие документы
... Authors requiring further information regarding Elsevier's archiving and manuscript policies are encouraged to visit: http://www.elsevier.com/copyright Author's personal copy Neuroscience Letters 496 (2011) 9599 Contents lists available at ScienceDirect Neuroscience Letters journal homepage: www.elsevier.com/locate/neulet Event-related potentials in a moving matrix modification of the P300 braincomputer interface paradigm Sergei L. Shishkin a b a,b, , Ilya P. Ganin a,b , Alexander Ya. ...
[
Текст
]
Ссылки http://brain.bio.msu.ru/papers/Shishkin_Ganin_Kaplan_2011_NSciLet__ERP_moving_matrix_P300_BCI.pdf -- 482.3 Кб -- 13.05.2011 Похожие документы
ISTITUTO NAZIONALE DI FISICA NUCLEARE Sezione di Genova INFN/TC-06/14 October 17, 2006 A FIBER OPTIC AIR BACKED MANDREL HYDROPHONE TO DETECT HIGH ENERGY HADRONIC SHOWERS IN THE WATER M.Anghinolfi1, A.Calvi3, A.Cotrufo3, M.Ivaldi1, O.Yershova2, F.Parodi1, D.Piombo1, A.Plotnikov2 and L.Repetto3 1) INFN-Sezione di ... UniversitЮ degli Studi di Genova, Dipartimento di Fisica Via Dodecaneso 33, I-16146 Genova, Italy Abstract We have studied the design of an air-backed ...
... Для задания этих элементов слоя существует единственный метод arc. arc pos_code x y width height start_angle arc_angle . ... Положение прямоугольника определяется координатами базовой точки ( x,y ) и значением параметра pos_code . ... Управление расположением прямоугольника относительно базовой точки" ). ... Параметр arc_angle задает размер дуги в градусах, относительно начальной точки. ... положение прямоугольника-окна относительно базовой точки (x,y) . ... X-координата базовой точки . ... height ....
... a) int x = 0; int f ( int a, int b) { return x = a + b; } class A { int x; public : A ( int n = 1) { x = n; } int f() { return ::x = x; } }; class B { int x; public : B ( int n = 2) { x = n; } }; class C: public A, public B { int x; public : int f( int a) { return ::x = x; } void g (); }; ... class X { public: void g () {cout << "g" << endl;} int h (int n) {cout << "f" << endl; return n} }; int main () { int k; const X x; X::g(); k = x.h(5); return 0; } 6.3. ...
[
Текст
]
Ссылки http://al.cs.msu.ru/files/cpp.tasks.2013.pdf -- 754.3 Кб -- 25.01.2014
[
Текст
]
Ссылки http://al.cs.msu.su/files/cpp.tasks.2013.pdf -- 754.3 Кб -- 25.01.2014
[
Текст
]
Ссылки http://al.cmc.msu.ru/files/cpp.tasks.2013.pdf -- 754.3 Кб -- 25.01.2014 Похожие документы
Calculated and experimental geometries of the nickel(ll) and iron(II) complexes (bond lengths and angles in the coordination sphere; the standard deviations are calculated for all bond and torsional angles) . ... X-ray [22] . This work . Calculated in [5] . ...
... 5 -- () 2009 , 4 / 11 { int Min ( int a, int b) } i f (a < b) return else return a; b; a) { a; } { d o u b l e Cube ( d o u b l e return a * a * int main ( ) c o u t << c o u t << system ( " 0 } return M i n ( 1 , 2 ) << e n d l ; C u b e ( 3 . ... 5 -- () 2009 , 5 / 11 bool { } { x 1 = (- b - s q r t ( D ) ) / ( 2 * a ) ; x 2 = (- b + s q r t ( D ) ) / ( 2 * a ) ; ; Root2 ( double a , double b , double d o u b l e &x 1 , d o u b l e &x 2 ) double D = b * b - 4 * a * c ; i f (D < 0 . ...
Архитектура ЭВМ и язык ассемблера . Страница поддержки курса "Архитектура ЭВМ и язык ассемблера" для 1 потока . ... Ассемблер nasm . ... Материалы . ... Материалы лекций . ... Материалы факультатива . ... Программа курса . ... Компьютерные системы: архитектура и программирование. 1 издание . ... Итоги коллоквиума ?1 . ... Коллоквиум ?1 . ... Итоги экзамена и всего курса . ... Результаты коллоквиума ?1 . ...