Home
last modified time | relevance | path

Searched refs:ZG (Results 1 – 25 of 779) sorted by relevance

12345678910>>...32

/dports/science/quantum-espresso/q-e-qe-6.7.0/EPW/ZG_displacement/src/
H A Dmake.depend1 ZG.o : ../../../Modules/bz_form.o
2 ZG.o : ../../../Modules/cell_base.o
3 ZG.o : ../../../Modules/constants.o
5 ZG.o : ../../../Modules/io_global.o
6 ZG.o : ../../../Modules/kind.o
7 ZG.o : ../../../Modules/mp_global.o
9 ZG.o : ../../../Modules/mp_world.o
11 ZG.o : ../../../Modules/parser.o
12 ZG.o : ../../../PW/src/pwcom.o
14 ZG.o : ../../../PW/src/tetra.o
[all …]
H A DMakefile20 ZG.x : ZG.o $(PHAUXOBJS) $(PHOBJS) $(PWOBJS) $(LRMODS) $(QEMODS) $(LIBOBJS)
22 ZG.o $(PHAUXOBJS) $(PHOBJS) $(LRMODS) $(PWOBJS) $(QEMODS) $(LIBOBJS) $(QELIBS)
27 - /bin/rm -f ../../../bin/ZG.x
/dports/biology/mopac/mopac7-1.15/fortran/
H A Dders.f18 COMMON /TEMP/ CG(60,6),ZG(60,6) local
24 APB=ZG(M,I)*ZG(N,J)
25 AMB=ZG(M,I)+ZG(N,J)
31 20 ABN=-4.0D0*(ADB**2)*DEL1*DEL2/(SQRT(ZG(N,J))*(A0**3))
33 30 ABN=(2.0D0*ADB/(SQRT(ZG(N,J))*A0))*
36 40 ABN=4.0D0*(ADB**2)*DEL1*DEL2/(SQRT(ZG(M,I))*(A0**3))
38 50 ABN=-(2.0D0*ADB/(SQRT(ZG(M,I))*A0))*
/dports/science/quantum-espresso/q-e-qe-6.7.0/EPW/ZG_displacement/
H A DREADME11 If you use ZG.x please do cite the following work:
22 Instructions for the construction of the "ZG-displacement" (Zacharias-Giustino) following
46 "ZG-configuration.dat" file.
59 "ZG.in" has the standard format as a "matdyn.in" file for Quantum Espresso.
119 … ii) To generate the ZG-displacement run "/path_to_your_espresso/bin/ZG.x <ZG_444.in> ZG_444.out".
120 …This generates three output files: the "equil_pos.txt", "ZG-configuration.dat" and "ZG-velocities.…
123 …The third one has the ZG-velocities or momenta of the nuclei generated in the same spirit with the…
127 6. VERY IMPORTANT NOTE: It is perfectly reasonable to find different ZG-displacements / ZG-configur…
148 Example using the ZG-displacement
190 Other capabilities of ZG.x:
[all …]
/dports/sysutils/zeitgeist/zeitgeist-1.0.3/libzeitgeist/
H A Dontology.vala725 uri = Zeitgeist.ZG.ACCEPT_EVENT;
733 uri = Zeitgeist.ZG.ACCESS_EVENT;
749 uri = Zeitgeist.ZG.CREATE_EVENT;
765 uri = Zeitgeist.ZG.DENY_EVENT;
777ZG.MOVE_EVENT, ZG.DENY_EVENT, ZG.DELETE_EVENT, ZG.LEAVE_EVENT, ZG.EXPIRE_EVENT, ZG.SEND_EVENT, ZG.…
778ZG.MOVE_EVENT, ZG.DELETE_EVENT, ZG.DENY_EVENT, ZG.LEAVE_EVENT, ZG.EXPIRE_EVENT, ZG.SEND_EVENT, ZG.…
785 …children = { ZG.WORLD_ACTIVITY, ZG.HEURISTIC_ACTIVITY, ZG.SYSTEM_NOTIFICATION, ZG.SCHEDULED_ACTIVI…
786 …all_children = { ZG.WORLD_ACTIVITY, ZG.HEURISTIC_ACTIVITY, ZG.SYSTEM_NOTIFICATION, ZG.SCHEDULED_AC…
805 uri = Zeitgeist.ZG.LEAVE_EVENT;
821 uri = Zeitgeist.ZG.MOVE_EVENT;
[all …]
H A Dontology-uris.vala1005 namespace ZG
1017 * Parents: {@link ZG.EVENT_INTERPRETATION}
1030 * Parents: {@link ZG.EVENT_INTERPRETATION}
1056 * Parents: {@link ZG.EVENT_INTERPRETATION}
1093ZG.MOVE_EVENT}, {@link ZG.DENY_EVENT}, {@link ZG.DELETE_EVENT}, {@link ZG.LEAVE_EVENT}, {@link ZG.…
1106 …ildren: {@link ZG.WORLD_ACTIVITY}, {@link ZG.HEURISTIC_ACTIVITY}, {@link ZG.SYSTEM_NOTIFICATION}, …
1134 * Parents: {@link ZG.EVENT_MANIFESTATION}
1199 * Parents: {@link ZG.EVENT_MANIFESTATION}
1225 * Parents: {@link ZG.EVENT_MANIFESTATION}
1238 * Parents: {@link ZG.EVENT_MANIFESTATION}
[all …]
/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A Dfn_interp2.hpp27 interp2_helper_nearest(const Mat<eT>& XG, const Mat<eT>& ZG, const Mat<eT>& XI, Mat<eT>& ZI, const … in interp2_helper_nearest() argument
37 if(mode == 0) { ZI.set_size(XI.n_elem, ZG.n_cols); } in interp2_helper_nearest()
38 if(mode == 1) { ZI.set_size(ZG.n_rows, XI.n_elem); } in interp2_helper_nearest()
81 if(mode == 0) { ZI.row(i) = ZG.row(best_j); } in interp2_helper_nearest()
82 if(mode == 1) { ZI.col(i) = ZG.col(best_j); } in interp2_helper_nearest()
92 interp2_helper_linear(const Mat<eT>& XG, const Mat<eT>& ZG, const Mat<eT>& XI, Mat<eT>& ZI, const e… in interp2_helper_linear() argument
102 if(mode == 0) { ZI.set_size(XI.n_elem, ZG.n_cols); } in interp2_helper_linear()
103 if(mode == 1) { ZI.set_size(ZG.n_rows, XI.n_elem); } in interp2_helper_linear()
170 if(mode == 0) { ZI.row(i) = (eT(1) - weight)*ZG.row(a_best_j) + (weight)*ZG.row(b_best_j); } in interp2_helper_linear()
171 if(mode == 1) { ZI.col(i) = (eT(1) - weight)*ZG.col(a_best_j) + (weight)*ZG.col(b_best_j); } in interp2_helper_linear()
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A Dfn_interp2.hpp27 interp2_helper_nearest(const Mat<eT>& XG, const Mat<eT>& ZG, const Mat<eT>& XI, Mat<eT>& ZI, const … in interp2_helper_nearest() argument
37 if(mode == 0) { ZI.set_size(XI.n_elem, ZG.n_cols); } in interp2_helper_nearest()
38 if(mode == 1) { ZI.set_size(ZG.n_rows, XI.n_elem); } in interp2_helper_nearest()
81 if(mode == 0) { ZI.row(i) = ZG.row(best_j); } in interp2_helper_nearest()
82 if(mode == 1) { ZI.col(i) = ZG.col(best_j); } in interp2_helper_nearest()
92 interp2_helper_linear(const Mat<eT>& XG, const Mat<eT>& ZG, const Mat<eT>& XI, Mat<eT>& ZI, const e… in interp2_helper_linear() argument
102 if(mode == 0) { ZI.set_size(XI.n_elem, ZG.n_cols); } in interp2_helper_linear()
103 if(mode == 1) { ZI.set_size(ZG.n_rows, XI.n_elem); } in interp2_helper_linear()
170 if(mode == 0) { ZI.row(i) = (eT(1) - weight)*ZG.row(a_best_j) + (weight)*ZG.row(b_best_j); } in interp2_helper_linear()
171 if(mode == 1) { ZI.col(i) = (eT(1) - weight)*ZG.col(a_best_j) + (weight)*ZG.col(b_best_j); } in interp2_helper_linear()
/dports/sysutils/zeitgeist/zeitgeist-1.0.3/datahub/
H A Dtelepathy-observer.vala96 ZG.ACCESS_EVENT,
106 event_template.manifestation = ZG.WORLD_ACTIVITY;
108 event_template.manifestation = ZG.USER_ACTIVITY;
179 event_template.interpretation = ZG.LEAVE_EVENT;
187 event_template.interpretation = ZG.RECEIVE_EVENT;
188 event_template.manifestation = ZG.WORLD_ACTIVITY;
196 event_template.interpretation = ZG.SEND_EVENT;
197 event_template.manifestation = ZG.USER_ACTIVITY;
217 ZG.ACCESS_EVENT,
218 ZG.USER_ACTIVITY,
[all …]
H A Drecent-manager-provider.vala181 event = new Event.full (ZG.ACCESS_EVENT,
182 ZG.USER_ACTIVITY,
197 event = new Event.full (ZG.MODIFY_EVENT,
198 ZG.USER_ACTIVITY,
213 event = new Event.full (ZG.ACCESS_EVENT,
214 ZG.USER_ACTIVITY,
/dports/math/gap/gap-4.11.0/pkg/congruence-1.2.3/lib/
H A Dunits.g111 # Returns a list of lists with integer entries which will serve for the units in U(ZG).
154 # Creates units of ZG. H must be D8 or S3.
157 local m,alpha,a,b,x,y,ZG,emb,hat,u,i,j;
162 ZG:=GroupRing(Integers,G);
163 emb := Embedding(G,ZG);
181 u[i][j]:=Identity(ZG) +
182 (alpha[j][1]*Identity(ZG) +
185 alpha[j][4]*a[i]^2*b[i])*(Identity(ZG)-a[i])*hat[i];
189 u[i][j]:=Identity(ZG) +
190 (alpha[j][1]*Identity(ZG) +
[all …]
/dports/math/gap/gap-4.11.0/pkg/hap-1.25/lib/Resolutions/
H A DresSmallFpGroup.gi60 # computing a free ZG-resolution.
66 # ZG+...+ZG (k copies of ZG)**
71 # Let zg be an element in the free module ZG+ZG, e.g.
174 # representing an element in ZG, this
261 # ZG+...+ZG (|v|/|G| copies).
299 # way with an element in the free module ZG+...+ZG
350 # where C2 is the direct sum ZG+ZG+...+ZG (|R| copies of ZG),
351 # C1 is the direct sum ZG+ZG+...+ZG (|X| copies of ZG).
423 # module ZG+...+ZG (k/|G| copies of ZG). Let A denote the
426 # ZG-module generated by the elements of T. Then T is
[all …]
/dports/sysutils/zeitgeist/zeitgeist-1.0.3/test/direct/
H A Devent-test.vala60 ZG.ACCESS_EVENT, ZG.USER_ACTIVITY, "application://firefox.desktop", null);
68 assert_cmpstr (ev.interpretation, OperatorType.EQUAL, ZG.ACCESS_EVENT);
69 assert_cmpstr (ev.manifestation, OperatorType.EQUAL, ZG.USER_ACTIVITY);
104 b.add ("s", ZG.ACCESS_EVENT);
105 b.add ("s", ZG.USER_ACTIVITY);
142 assert_cmpstr (ev.interpretation, OperatorType.EQUAL, ZG.ACCESS_EVENT);
143 assert_cmpstr (ev.manifestation, OperatorType.EQUAL, ZG.USER_ACTIVITY);
172 b.add ("s", ZG.ACCESS_EVENT);
173 b.add ("s", ZG.USER_ACTIVITY);
213 assert_cmpstr (ev.interpretation, OperatorType.EQUAL, ZG.ACCESS_EVENT);
[all …]
/dports/games/moria/umoria/mac/
H A DMakeFile.hqx93 cBc)ZBbj[#3N*a!PMEfjcG'&ZG#jS)'0[EQCTCbjS)(4jF'9c,QJJCAKdCA*ZFbj
96 ZD!eYEh*TB6)ZBbj[#3N*a!PMEfjcG'&ZG#jS)'0[EQCTCbjS)(4jF'9c,QJJCAK
99 iG'9bER-ZD!e`FQ&jCA)ZBbj[#3N*a!PMEfjcG'&ZG#jS)'0[EQCTCbjS)(4jF'9
110 ZG#jS)'0[EQCTCbjS)(4jF'9c,QJJCAKdCA*ZFbjS$A4KBQaPFbjM,Qm*#3R%#@0
116 ZG#jS)'0[EQCTCbjS)(4jF'9c,QJJCAKdCA*ZFbjS$3eYB@0NBA4K,R*cFQ-ZE`N
122 QD@FZD#"dHA"PFbjS$A4bC@&cGA*P,R*cFQ-ZE`N*a!PMEfjcG'&ZG#jS)'0[EQC
/dports/math/R-cran-spdep/spdep/man/
H A DglobalG.test.Rd47 ZG <- vector(mode="list", length=ndists)
48 names(ZG) <- as.character(dists)
53 ZG[[i]] <- globalG.test(sidsrate79, thislw, zero.policy=TRUE)
55 t(sapply(ZG, function(x) c(x$estimate[1], x$statistic, p.value=unname(x$p.value))))
59 ZG[[i]] <- globalG.test(sidsrate79, thislw, zero.policy=TRUE, alternative="two.sided")
61 t(sapply(ZG, function(x) c(x$estimate[1], x$statistic, p.value=unname(x$p.value))))
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/ru.lproj/
H A DHBPlayerHUDController.strings52 …= "NSTextField"; ibExternalAccessibilityDescription = "Time Remaining"; ObjectID = "PVD-pq-1ZG"; */
53 "PVD-pq-1ZG.ibExternalAccessibilityDescription" = "Осталось времени";
55 /* Class = "NSTextField"; ibShadowedToolTip = "Time remaining."; ObjectID = "PVD-pq-1ZG"; */
56 "PVD-pq-1ZG.ibShadowedToolTip" = "Осталось времени.";
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/de.lproj/
H A DHBPlayerHUDController.strings52 …= "NSTextField"; ibExternalAccessibilityDescription = "Time Remaining"; ObjectID = "PVD-pq-1ZG"; */
53 "PVD-pq-1ZG.ibExternalAccessibilityDescription" = "Verbleibende Zeit";
55 /* Class = "NSTextField"; ibShadowedToolTip = "Time remaining."; ObjectID = "PVD-pq-1ZG"; */
56 "PVD-pq-1ZG.ibShadowedToolTip" = "Verbleibende Zeit.";
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/fr.lproj/
H A DHBPlayerHUDController.strings52 …= "NSTextField"; ibExternalAccessibilityDescription = "Time Remaining"; ObjectID = "PVD-pq-1ZG"; */
53 "PVD-pq-1ZG.ibExternalAccessibilityDescription" = "Temps restant";
55 /* Class = "NSTextField"; ibShadowedToolTip = "Time remaining."; ObjectID = "PVD-pq-1ZG"; */
56 "PVD-pq-1ZG.ibShadowedToolTip" = "Temps restant.";
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/it.lproj/
H A DHBPlayerHUDController.strings52 …= "NSTextField"; ibExternalAccessibilityDescription = "Time Remaining"; ObjectID = "PVD-pq-1ZG"; */
53 "PVD-pq-1ZG.ibExternalAccessibilityDescription" = "Tempo rimanente";
55 /* Class = "NSTextField"; ibShadowedToolTip = "Time remaining."; ObjectID = "PVD-pq-1ZG"; */
56 "PVD-pq-1ZG.ibShadowedToolTip" = "Tempo rimanente.";
/dports/math/gap/gap-4.11.0/pkg/hap-1.25/lib/CohomologyOperations/
H A DhomologyOperations.gi8 ## in a free ZG-resolution R. We won't document this method in the manual
15 # R is a free ZG-resolution and we are considering the boundary
17 # A is a ZG-module represented as a G-Outer group.
64 ## Method for applying TensorWithG(_,A) to a free ZG-resolution R.
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/pt-BR.lproj/
H A DHBPlayerHUDController.strings52 …= "NSTextField"; ibExternalAccessibilityDescription = "Time Remaining"; ObjectID = "PVD-pq-1ZG"; */
53 "PVD-pq-1ZG.ibExternalAccessibilityDescription" = "Tempo Restante";
55 /* Class = "NSTextField"; ibShadowedToolTip = "Time remaining."; ObjectID = "PVD-pq-1ZG"; */
56 "PVD-pq-1ZG.ibShadowedToolTip" = "Tempo restante.";
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/test/data/
H A Dbase64-with-whitespace.eml17 ZG
35 ZG
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mail/test/browser/composition/data/
H A Dbase64-with-whitespace.eml17 ZG
35 ZG
/dports/math/flint2/flint-2.8.4/nmod_mpoly_factor/
H A Dgcd_zippel.c175 n_polyun_t HG, MG, ZG; in nmod_mpolyl_gcds_zippel() local
236 n_polyun_init(ZG); in nmod_mpolyl_gcds_zippel()
279 n_polyun_zip_start(ZG, HG, l); in nmod_mpolyl_gcds_zippel()
314 if (!n_poly_add_zip_must_match(ZG, Gev, cur_zip_image)) in nmod_mpolyl_gcds_zippel()
331 if (ZG->coeffs[s].coeffs[i] == 0) in nmod_mpolyl_gcds_zippel()
335 ZG->coeffs[s].coeffs[i], ctx->mod); in nmod_mpolyl_gcds_zippel()
374 nmod_mat_entry(ML + s, i, n + i) = ZG->coeffs[s].coeffs[i]; in nmod_mpolyl_gcds_zippel()
444 _nmod_vec_mul(ZG->coeffs[s].coeffs, ZG->coeffs[s].coeffs, in nmod_mpolyl_gcds_zippel()
448 success = n_polyun_zip_solve(G, ZG, HG, MG, ctx); in nmod_mpolyl_gcds_zippel()
484 n_polyun_clear(ZG); in nmod_mpolyl_gcds_zippel()
/dports/math/gap/gap-4.11.0/pkg/ModulePresentationsForCAP-2019.01.16/gap/
H A DModulePresentationNaturalTransformations.gi87 local ZG, natiso;
89 ZG := triple_getter( UnderlyingMatrix( object ) );
91 natiso := PresentationMorphism( id_object, ZG[2], smaller_object );

12345678910>>...32