JASS Development


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers JASS Development
# 1  
Old 08-06-2009
JASS Development

with regard to JASS, some time ago (1.5 years) I took it's 4.2 version and dig it quite much and created customized and more tight (although still 100% usefull) version of the framework to be used in company i worked for (I think they never used it after I left, however).
I also found that some of the scripts in JASS4.2 had errors and actually could not work. REcently I discovered the newest JASS version is still 4.2!!! Does any one think it may be usefull to somehow go public with what I reworked?

Personally I find JASS great and I learned many smart concepts digging through its scripts and code. These days I try to port some of it's concepts to other platform that need controls and compliance verification.

I will appreciate yout thoughts... Smilie
Small problem could be that I only have access to solaris 10 on vbox these days... No real SPARC machine.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

Need jass hardening documentation

Hi, Where I could find information about "Jass hardening" for Solaris10? Because, I change the /opt/SUNWjass/Files/etc/syslog.conf file. But yet I don't know if I must restart the jass (and how?) or I must to copy /opt/SUNWjass/Files/etc/syslog.conf to /etc/syslog.conf? Thanks for your... (2 Replies)
Discussion started by: hiddenshadow
2 Replies

2. What is on Your Mind?

Which OS is better for software development ?

Big noob in everything, so I want know from more experienced users and programmers what they think which OS is better for system development? (3 Replies)
Discussion started by: solaris_user
3 Replies

3. Solaris

JASS - upgrading from Sol 9 to Sol 10

Do I need to reinstall/rerun JASS after upgrading from Sol9 to Sol10? Just wondered if the upgrade procedure overwrote any of the settings etc? (0 Replies)
Discussion started by: psychocandy
0 Replies

4. News, Links, Events and Announcements

b8 development goes on

b8 development goes on The next b8 release (0.5) will be a major one with major changes. Oliver Lillie sent me a basic PHP 5 port of b8, I used his code as the base for b8 0.5. Almost all parts have been completely rewritten, only the math remains untouched. The most significant changes are:... (0 Replies)
Discussion started by: Neo
0 Replies

5. UNIX for Dummies Questions & Answers

Moving to development

Hey someone tell me how to participate in the development of bsd unix....... (3 Replies)
Discussion started by: prasad1990
3 Replies

6. Solaris

Jass Toolkit 4.2

I have Jass Toolkit 4.2 for Solaris 10. If I run #jass-execute -d secure.driver and then enable certain services which were disabled by jass, such as ssh, how do I incorporate those changes to jass so that when i rerun jass-execute secure-driver, it does not complain. Any suggestions please,... (1 Reply)
Discussion started by: Tirmazi
1 Replies

7. UNIX for Dummies Questions & Answers

Development of Unix

I was thinking about pros and cons of unix and about comparison Unix shell (bash) and unix commands with Windows PowerShell and its commands. I just would like to hear what do you mean about: 1. Aren't options of unix commands too much confusing? Why are not standardized in a way that it's... (14 Replies)
Discussion started by: MartyIX
14 Replies

8. Solaris

Jass & SMC login problem

After I run Jass , I can bring up the SMC GUI, but it wont let me log in as root. It works without Jass being run. Does anyone know what in Jass disables this. I have tried removing some things from jass like remote-root-login to no avail. Any hints would be greatly appreciated. I ram running... (0 Replies)
Discussion started by: garydeena
0 Replies
Login or Register to Ask a Question
mass(3rheolef)							    rheolef-6.1 						    mass(3rheolef)

NAME
mass -- L2 scalar product SYNOPSIS
form(const space& V, const space& V, "mass"); form(const space& M, const space& V, "mass"); form (const space& V, const space& V, "mass", const domain& gamma); form_diag(const space& V, "mass"); DESCRIPTION
Assembly the matrix associated to the L2 scalar product of the finite element space V. / | m(u,v) = | u v dx | / Omega The V space may be either a P0, P1, P2, bubble, P1d and P1d finite element spaces for building a form see form(2). The use of quadrature formulae is sometime usefull for building diagonal matrix. These approximate matrix are eay to invert. This proce- dure is available for P0 and P1 approximations. Notes that when dealing with discontinuous finite element space, i.e. P0 and P1d, the corresponding mass matrix is block diagonal, and the inv_mass form may be usefull. When two different space M and V are supplied, assembly the matrix associated to the projection operator from one finite element space M to space V. / | m(q,v) = | q v dx | / Omega for all q in M and v in V. This form is usefull for instance to convert discontinuous gradient components to a continuous approximation. The transpose operator may also be usefull to performs the opposite operation. The following $V$ and $M$ space approximation combinations are supported for the mass form: P0-P1, P0-P1d, P1d-P2, P1-P1d and P1-P2. EXAMPLE
The following piece of code build the mass matrix associated to the P1 approximation: geo g("square"); space V(g, "P1"); form m(V, V, "mass"); The use of lumped mass form write also: form_diag md(V, "mass"); The following piece of code build the projection form: geo g("square"); space V(g, "P1"); space M(g, "P0"); form m(M, V, "mass"); SCALAR PRODUCT ON THE BOUNDARY
Assembly the matrix associated to the L2 scalar product related to a boundary domain of a mesh and a specified polynomial approximation. These forms are usefull when defining non-homogeneous Neumann or Robin boundary conditions. Let W be a space of functions defined on Gamma, a subset of the boundary of the whole domain Omega. / | m(u,v) = | u v dx | / Gamma for all u, v in W. Let V a space of functions defined on Omega and gamma the trace operator from V into W. For all u in W and v in V: / | mb(u,v) = | u gamma(v) dx | / Gamma For all u and v in V: / | ab(u,v) = | gamma(u) gamma(v) dx | / Gamma EXAMPLE
The following piece of code build forms for the P1 approximation, assuming that the mesh contains a domain named boundary: geo omega ("square"); domain gamma = omega.boundary(); space V (omega, "P1"); space W (omega, gamma, "P1"); form m (W, W, "mass"); form mb (W, V, "mass"); form ab (V, V, "mass", gamma); SEE ALSO
form(2) rheolef-6.1 rheolef-6.1 mass(3rheolef)