Log of /branches/ROBW_XPLATFORM
Directory Listing
Revision
678 -
Directory Listing
Modified
Sun Mar 26 12:20:00 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+Allow for environment variable PATH, LD_LIBRARY_PATH, and PYTHONPATH to
not exist in the users environment.
Revision
677 -
Directory Listing
Modified
Sun Mar 26 11:25:19 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Opps forgot to commit the lines that add the PYTHONPATH to the scons ENV used for calling external programs
Revision
676 -
Directory Listing
Modified
Sun Mar 26 10:13:34 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Modified test SConscript dependencies to remove redundant call to explicit dependency
+ Modified scon_extensions.py - run unit tests (py and C++) now use scons::Execute rather than python os.system. This ensures the development environment
is used rather than the users environment to run the tests
+ SConstruct file now sets up LD_LIBRARY_PATH and PYTHONPATH to point to the current builds pyinstall and libinstall paths as required.
IT IS NO LONGER NECESSARY TO SET LD_LIBRARY_PATH and PYTHONPATH to point at your build outputs. Much safer in the presence of multiple checked out builds.
Under these circumstances you are better of using scons to run the tests rather than doing so directly. Easiest way to do this is to build the test output target for the test you want:
e.g. scons build/posix/bruce/test/python/ImportTest.passed
or if you prefer
cd build/posix/bruce/test/python
scons -u ImportTest.passed
Revision
675 -
Directory Listing
Modified
Sun Mar 26 07:28:06 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Add an all_tests targets: run_tests and py_tests
Revision
674 -
Directory Listing
Modified
Sun Mar 26 07:21:48 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+Some more svn:ignore properties.
Revision
673 -
Directory Listing
Modified
Sun Mar 26 07:16:42 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Added some svn:ignore properties so .pyc files aren't reported during svn status and friends
+ Removed esys directory. Build system will create the pyinstall/esys target and touch the __init__.py file in it as part of the build process. This means you can now direct scons to perform an install of the python directly into your desired location rather than just in the root of the source tree.
Revision
672 -
Directory Listing
Modified
Sat Mar 25 16:21:22 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Scons cflags are added to cxxflags. Only need to list extra flags for
C++
Revision
671 -
Directory Listing
Modified
Sat Mar 25 16:04:24 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ scons adds CCFLAGS to CXXFLAGS so the c++ flags only need to specify the c++ specific ones in the options file.
Revision
670 -
Directory Listing
Modified
Sat Mar 25 14:56:39 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Changed include paths to no longer require the cpp suffix (missed in earlier
commit)
+ modified tests so they no longer install to #/lib
Revision
669 -
Directory Listing
Modified
Sat Mar 25 13:35:55 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ Added lib back in. Once cppunit is removed this will no longer be
necessary as scons will no longer through up an error when looking for
cppunit lib path when it hasn't been built yet.
Revision
668 -
Directory Listing
Modified
Sat Mar 25 13:27:27 2006 UTC
(16 years, 11 months ago)
by
robwdcock
+ finally figured out why the tests failed when the python extension libs were
no longer sym links. The original setup for python extension modules was to
have sym links in the esys/* directories named, for example escriptcpp.so.
These would link to the actual libraries libescriptcpp.so. The lib*.so would
link to each other. When you replaced the symlink with a copy of the lib*.so
but renamed without the lib you would then get problems. In particular,
py_tests would suddenly start failing.
The problem appears (I've not been able to find documentary evidence to this
case) to be that when, for example, you import bruce, brucecpp.so imports
lib/libescriptcpp.so (which intialises escript python bits), bruce then
imports escriptcpp.so (which also initialised escript python bits).
Whether that is exactly correct or not is of interest but the important bit
is you appear to get two versions. After thinking about this for a bit and
reviewing a bunch of other examples of working python modules I noticed a
pattern. NONE of the other examples ever included more than the python
wrapper code in the python extension library. Instead they just link to
the pure C++ library. This would avoid the duplicate load.
So, I've refactored the code. If you consider escript the pattern in now:
lib/libescript.so - which has all of escript EXCEPT the python escriptcpp.cpp
esys/escript/escriptcpp.so - which has ONLY the escriptcpp.cpp and links to
lib/libescript.so
Run the tests and low and behold they all pass again.
Q: Why doesn't this problem occur with sym links?
A: My guess is that python and the dynamic linker take a look at the actual
absolute python of libraries to determine if its a "different" library.
I did fine some discussions that seem to suggest this.
Q: Why can't you just set LD_LIBRARY_PATH==PYTHONPATH and stick all the
libs in that directory?
A: I (in fact we, Peter Hornby was there) tried. With the renaming of the
python module so it doesn't have a lib prefix you get problems with
getting the shared libraries to be looked up in LD_LIBRARY_PATH. Do
the opposite and use lib on the python modules and you have problems
with windows which doesn't prepend the lib. Various combination
in between were also tried but you end up in a catch 22 situation so far
as I could tell
Please if you know more about the ins and outs of python and shared
libraries let me know if this isn't true. I'd really like to know if my
guesses are correct. In any event, the fix is more consistent with the
patterns I've seen
Phew! this was a long log message, glad it is on a branch!
Revision
667 -
Directory Listing
Modified
Fri Mar 24 13:25:00 2006 UTC
(17 years ago)
by
robwdcock
+ OUCH ARGHH
+ Okay the wizzy linkHack doesn't work. Not sure why but py_tests fail
when the shared library is on the link line directly (without a -l)
+ Unfortunately we can't figure out how to use -l without it prepending
a lib prefix. Hence all the shareable objects in python now need to be
called libblah.so (and lib will need to be prepended on windows!!!!).
This is not the python way and its very annoying. Why do we have this
problem? Because the C++ shared libraries link with each other.
Revision
666 -
Directory Listing
Modified
Fri Mar 24 11:29:40 2006 UTC
(17 years ago)
by
robwdcock
+ Fix up python esys area:
+ libraries are named without lib prefix on posix platforms (python standard)
+ libraries are now installed into the pyinstall area (python standard)
+ symlinks removed, no longer required
+ LD_LIBRARY_PATH is now optional for PYTHON programs (still required for c++)
+ lib PREFIX removal NOTES:
+ removing the lib prefix is non-standard for the linker. As such we've created a
custom function sharedLinkHack to specify the .so on the link command line
(as opposed to using -l<archive> which will prepend the lib). This has a
a small slight of hand for scons which was being to "helpful". Scons
verifies that when creating a shared libray all objects specified are
created shareable (e.g. ensure objects are compiler with -fPIC). Since
we are linking a .so out of the blue we had to wrap it up in a File note
and flag it as shared.
Easily done, once you know how. Thankfully this is all wrapped
up in a simple function (sharedLinkHack) that looks like ordinary scons so
you will never know!
Revision
665 -
Directory Listing
Modified
Fri Mar 24 09:30:44 2006 UTC
(17 years ago)
by
robwdcock
+Some tidying up and fixme comments so we remember to fix this test later
Revision
664 -
Directory Listing
Modified
Fri Mar 24 09:28:36 2006 UTC
(17 years ago)
by
robwdcock
+Remove old unit test
Revision
663 -
Directory Listing
Modified
Fri Mar 24 09:26:58 2006 UTC
(17 years ago)
by
robwdcock
+Remove old Sconstruct files
Revision
662 -
Directory Listing
Modified
Fri Mar 24 09:15:54 2006 UTC
(17 years ago)
by
robwdcock
+Modellib now include in build
Revision
661 -
Directory Listing
Modified
Fri Mar 24 09:13:00 2006 UTC
(17 years ago)
by
robwdcock
+py_tests now runs. Be patient, it is all of them!!
Revision
659 -
Directory Listing
Modified
Fri Mar 24 08:40:50 2006 UTC
(17 years ago)
by
robwdcock
+Added dependency to libinstall. Painful because these tests should depend only on escript. Unfortunately some python unit tests are requiring finley to do stuff.
Revision
658 -
Directory Listing
Modified
Fri Mar 24 08:39:41 2006 UTC
(17 years ago)
by
robwdcock
+Linker is sensitive to library order. mkl_solver needs to be near the
end or paradiso_ goes missing
Revision
656 -
Directory Listing
Modified
Fri Mar 24 08:12:40 2006 UTC
(17 years ago)
by
robwdcock
+Add sys_libs to libraries to link with for escript
Revision
655 -
Directory Listing
Modified
Fri Mar 24 07:55:21 2006 UTC
(17 years ago)
by
robwdcock
# fix some lib flags
Revision
654 -
Directory Listing
Modified
Fri Mar 24 07:35:06 2006 UTC
(17 years ago)
by
robwdcock
+Opps, missed a file again
Revision
652 -
Directory Listing
Modified
Fri Mar 24 07:34:18 2006 UTC
(17 years ago)
by
robwdcock
+Add py_tests targets and get script ones running
Revision
651 -
Directory Listing
Modified
Fri Mar 24 06:44:23 2006 UTC
(17 years ago)
by
robwdcock
+Python file now compile and install into pyinstall directory
Revision
650 -
Directory Listing
Modified
Fri Mar 24 06:13:52 2006 UTC
(17 years ago)
by
phornby
Builds and passes on linux (debian)
Revision
649 -
Directory Listing
Modified
Fri Mar 24 06:07:07 2006 UTC
(17 years ago)
by
robwdcock
+Opps, helps if you include the two new files for Finley tests
Revision
648 -
Directory Listing
Modified
Fri Mar 24 06:04:57 2006 UTC
(17 years ago)
by
robwdcock
+Finely unit tests now running in build system
All C++ tests run and compile on Altix, I expect the same result for Linux so you may not see another log message for that.
Revision
647 -
Directory Listing
Modified
Fri Mar 24 05:23:05 2006 UTC
(17 years ago)
by
robwdcock
+ Prep for unit test consolidation consistent with other modules
NOTE: HBtest and MMtest appear to be stale tests and are not built using the scons system. They have been removed.
Revision
646 -
Directory Listing
Modified
Fri Mar 24 04:22:28 2006 UTC
(17 years ago)
by
robwdcock
+ Now compiles and passes tests on AcCESS machine. Some minor mods to
the configuraiton file required as we've moved to the intel 9.0.026
compiler
Revision
642 -
Directory Listing
Modified
Thu Mar 23 14:03:49 2006 UTC
(17 years ago)
by
robwdcock
+ Bruce unit tests consolidated and added to build system
Revision
641 -
Directory Listing
Modified
Thu Mar 23 14:02:26 2006 UTC
(17 years ago)
by
robwdcock
+ First compilation under Linux with new xplatform build system. Some minor adjustments because didn't like None objects in a list so using '' instead
Note: Most everything appears to compile but the Data test suite is failing to pass in testMore - Exercise wherePositive method.
This test passes on altix.
Revision
640 -
Directory Listing
Modified
Thu Mar 23 13:45:12 2006 UTC
(17 years ago)
by
robwdcock
+Preparing for unit test consolidation
Revision
639 -
Directory Listing
Modified
Thu Mar 23 13:06:40 2006 UTC
(17 years ago)
by
robwdcock
+Unit tests for esysUtils and escript added
Revision
638 -
Directory Listing
Modified
Thu Mar 23 13:06:01 2006 UTC
(17 years ago)
by
robwdcock
+Unit tests unified into escript_UnitTest
+SConscript support for build_tests and run_tests
Revision
636 -
Directory Listing
Modified
Thu Mar 23 09:46:31 2006 UTC
(17 years ago)
by
robwdcock
Clean up test into single test suite and only one SConscript file so it is easier to maintain.
Note:
+ Use the command line options on tests in order to run only one of them if you need to
+ THIS DOESN'T WORK YET: I've not merged the tests, that will follow shortly
+ I do hope this merges with the changes on the trunk!
Revision
635 -
Directory Listing
Modified
Thu Mar 23 08:56:35 2006 UTC
(17 years ago)
by
robwdcock
+EsysExceptionTest and build_tests and run_tests targets now operating as per original build system
Revision
634 -
Directory Listing
Modified
Thu Mar 23 06:03:46 2006 UTC
(17 years ago)
by
robwdcock
+ Opps windows build wasn't getting options passed into environment!
Note: Windows build environment for intel_c compiler is only partially building. Looks like there will be a few source code adjustments necessary to tweak things. Still, much better than the msvc compiler. It also has openmp support - now I just need a dual core cpu notebook upgrade.
Revision
632 -
Directory Listing
Modified
Thu Mar 23 05:00:51 2006 UTC
(17 years ago)
by
robwdcock
+Fix problem in setting flags when no options file is used
Revision
630 -
Directory Listing
Modified
Thu Mar 23 04:02:59 2006 UTC
(17 years ago)
by
robwdcock
Some minor tweaks on the flags for the new build system
Revision
624 -
Directory Listing
Modified
Wed Mar 22 23:00:01 2006 UTC
(17 years ago)
by
robwdcock
+ Finish off the header file path changes
+ The C/C++ libraries now all compile on the ivec altix (cognac) using the xplatform build system
Revision
623 -
Directory Listing
Modified
Wed Mar 22 14:11:03 2006 UTC
(17 years ago)
by
robwdcock
Beginning of a fully cross-platform (win32+intelc, linux+g++, altix+intelc)
scons build system
WORK IN PROGRESS NOT COMPLETE
+Incorporates ideas from trunks scons build system and the RW_WIN32 branch
+New Header layout as include/<modulename>, hence the changes to the headers
+Not all modules or features from trunk build system are fully implemented
-Removes need for intermediary SConstruct files - the top SConstruct is more complex but handle cross-platform better AND the SConscript are a LOT simpler
and only differ slightly. It should be simpler to maintain
-Options are now handled via either a: config file supplied on command line, a config file in the scons/hostname_options.py, or as individual command line arguments
-Need help with options: scons -h will give you a list of options and their current settings
Revision
622 -
Directory Listing
Modified
Wed Mar 22 14:00:08 2006 UTC
(17 years ago)
by
robwdcock
Copied from:
trunk revision 621
Creating a private branch so I can test and verify cross-platform build
Revision
621 -
Directory Listing
Modified
Wed Mar 22 07:44:18 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
bugs in test fixed
Revision
620 -
Directory Listing
Modified
Wed Mar 22 07:43:42 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
problem with tagged data isolated
Revision
619 -
Directory Listing
Modified
Wed Mar 22 04:49:24 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
non letter and non digital in hostname ar ereplaced by _ now
Revision
618 -
Directory Listing
Modified
Wed Mar 22 04:02:38 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
mmio moced to paso
Revision
617 -
Directory Listing
Modified
Wed Mar 22 02:58:17 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
More copyright.
Revision
616 -
Directory Listing
Modified
Wed Mar 22 02:46:56 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
Copyright added to more source files.
Revision
615 -
Directory Listing
Modified
Wed Mar 22 02:12:00 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
More copyright information.
Revision
614 -
Directory Listing
Modified
Wed Mar 22 01:37:07 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
Corrected spelling of 'license' in url so that the link actually points to the license.
Revision
613 -
Directory Listing
Modified
Wed Mar 22 01:12:32 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
More copyright information inserted.
Revision
612 -
Directory Listing
Modified
Tue Mar 21 23:54:39 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
strange problem with import numarray.linear_algebra fixed
Revision
611 -
Directory Listing
Modified
Tue Mar 21 23:22:37 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
typo fixed
Revision
610 -
Directory Listing
Modified
Tue Mar 21 23:08:28 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some missing files
Revision
609 -
Directory Listing
Modified
Tue Mar 21 09:46:39 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
Updated copyright and licence notices.
Revision
608 -
Directory Listing
Modified
Tue Mar 21 09:46:06 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk
moved "import numarray.linear_algebra" to function that uses it, in case it is not installed
Revision
606 -
Directory Listing
Modified
Mon Mar 20 23:34:00 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
documentation on pyvisi added
Revision
605 -
Directory Listing
Modified
Mon Mar 20 07:16:27 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
pyvisi with vtk runs noe on the altix
Revision
604 -
Directory Listing
Modified
Mon Mar 20 02:23:14 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
example cleanup
Revision
603 -
Directory Listing
Modified
Mon Mar 20 01:49:39 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
pyvisi compiles now
Revision
602 -
Directory Listing
Modified
Fri Mar 17 06:57:46 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
more work on pyvisi integration
Revision
601 -
Directory Listing
Modified
Fri Mar 17 06:18:25 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
directories are moved around to match escript convention
Revision
600 -
Directory Listing
Modified
Fri Mar 17 05:53:59 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some renaming
Revision
599 -
Directory Listing
Modified
Fri Mar 17 05:48:59 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
update on escript function
Revision
598 -
Directory Listing
Modified
Fri Mar 17 05:00:24 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
edable versions
Revision
596 -
Directory Listing
Modified
Wed Mar 15 22:41:23 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some work on AdvectivePDE for the scalar case
Revision
595 -
Directory Listing
Modified
Tue Mar 14 23:52:45 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
test_utilOnFinley fixed (did run the tests that still fail)
Revision
594 -
Directory Listing
Modified
Tue Mar 14 23:36:08 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
print message removed
Revision
593 -
Directory Listing
Modified
Tue Mar 14 02:50:27 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
updates on escript documentation (unfinished)
Revision
592 -
Directory Listing
Modified
Mon Mar 13 04:04:26 2006 UTC
(17 years ago)
by
lkettle
Original Path:
trunk
Adding some figure for online documentation (3D Wave Propagation).
Revision
591 -
Directory Listing
Modified
Mon Mar 13 02:05:54 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
papi switched off on altix
Revision
590 -
Directory Listing
Modified
Fri Mar 10 06:29:14 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
all tests activated
Revision
589 -
Directory Listing
Modified
Fri Mar 10 06:28:35 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
my little test generator
Revision
588 -
Directory Listing
Modified
Fri Mar 10 04:45:04 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
1D and 3D tests for eigenvalues_and_eigenvector added.
Revision
587 -
Directory Listing
Modified
Fri Mar 10 02:26:50 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
eigenvalues_and_eigenvector fucntion added. test for 2D problem is added and is passed.
Revision
586 -
Directory Listing
Modified
Fri Mar 10 01:24:27 2006 UTC
(17 years ago)
by
lkettle
Original Path:
trunk
corrected error in natural b.c.
Revision
585 -
Directory Listing
Modified
Thu Mar 9 23:47:42 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
problem with eigenvalue of zero matrix fixed (thanks Dr Hale)
Revision
584 -
Directory Listing
Modified
Thu Mar 9 23:03:38 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
eigenvalues: compiles and passes tests on altix now
Revision
583 -
Directory Listing
Modified
Wed Mar 8 08:15:34 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
_eigenvalues_and_eigenvector method added of data object. the algorithm has been tested on floats in python but not on data objects.
Revision
582 -
Directory Listing
Modified
Wed Mar 8 05:54:06 2006 UTC
(17 years ago)
by
lkettle
Original Path:
trunk
Changed example script for wave.py to a point source wave propagation problem in 3D.
Revision
581 -
Directory Listing
Modified
Wed Mar 8 05:48:51 2006 UTC
(17 years ago)
by
lkettle
Original Path:
trunk
changes to section 2.3 on 3D wave propagation in online reference guide and added some figures
Revision
580 -
Directory Listing
Modified
Wed Mar 8 05:45:51 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
faster version of the local eigenvalue calculation
Revision
579 -
Directory Listing
Modified
Tue Mar 7 01:28:23 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
new section on lame equation completed
Revision
578 -
Directory Listing
Modified
Mon Mar 6 06:12:04 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
new section in the tutorial
Revision
577 -
Directory Listing
Modified
Fri Mar 3 08:32:16 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
installation of new inc file
Revision
576 -
Directory Listing
Modified
Fri Mar 3 08:28:42 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some steps towards eigenvalue and eigenvector calculation
Revision
575 -
Directory Listing
Modified
Fri Mar 3 03:33:07 2006 UTC
(17 years ago)
by
lkettle
Original Path:
trunk
I have changed some of the documentation and added more explanations for
the online reference guide for esys13. I have modified two of the
example source codes to write out the results for Helmholtz problem and
changed one variable name in the diffusion.py code to avoid confusion.
Revision
574 -
Directory Listing
Modified
Thu Mar 2 06:31:24 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some modifications on eigenvalues to make it a bit more robust.
Revision
573 -
Directory Listing
Modified
Thu Mar 2 00:42:53 2006 UTC
(17 years ago)
by
lkettle
Original Path:
trunk
I have made a few changes to the documentation for the online reference
guide for the Poisson and diffusion examples.
Revision
572 -
Directory Listing
Modified
Wed Mar 1 04:40:10 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some fixes to get Latex compiled
Revision
571 -
Directory Listing
Modified
Tue Feb 28 06:53:17 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
modify whereZero etc methods to also accept a tolerance parameter
Revision
570 -
Directory Listing
Modified
Tue Feb 28 06:51:25 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
extend these tests to test DataTagged objecrs also
Revision
569 -
Directory Listing
Modified
Tue Feb 28 05:34:37 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
modified presentation of LinearPDE
Revision
567 -
Directory Listing
Modified
Tue Feb 28 03:58:05 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
updates examples
Revision
565 -
Directory Listing
Modified
Mon Feb 27 00:04:17 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
some updates
Revision
564 -
Directory Listing
Modified
Thu Feb 23 05:22:31 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
extend testing to include DataTagged objects with no
tags, only default values
Revision
563 -
Directory Listing
Modified
Thu Feb 23 05:09:47 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
extend operator tests to include DataTagged and DataExpanded
Revision
562 -
Directory Listing
Modified
Thu Feb 23 05:03:16 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
further fix for DataTAgged::dp_algorithm, was not working for DataTagged objects with 0 tags
Revision
561 -
Directory Listing
Modified
Thu Feb 23 03:49:50 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
minor reformatting
Revision
560 -
Directory Listing
Modified
Thu Feb 23 01:58:35 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
reinstate testing of DataTagged object unary ops
Revision
559 -
Directory Listing
Modified
Thu Feb 23 01:43:44 2006 UTC
(17 years ago)
by
jgs
Original Path:
trunk
reimplement dp_algorithm for DataTagged, existing
implementation was complete rubbish
(ich bin so beschämt!)
Revision
558 -
Directory Listing
Modified
Thu Feb 23 01:02:31 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk
switch back to test on no tagged data
Revision
557 -
Directory Listing
Modified
Wed Feb 22 05:11:56 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add test case for case where binaryOp combines a DataTagged and a scalar
Revision
556 -
Directory Listing
Modified
Wed Feb 22 04:45:15 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reinstate testing using DataTagged objects
Revision
555 -
Directory Listing
Modified
Wed Feb 22 04:44:10 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fixed binaryOp for combination of DataTagged and scalar values.
calculation of default value where RHS was a scalar was not yet
implemented
Revision
554 -
Directory Listing
Modified
Wed Feb 22 04:02:54 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
tests for tagged data fixed. test failing on maxval with segmenation fault (peinlich, peinlich)
Revision
553 -
Directory Listing
Modified
Wed Feb 22 04:01:21 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
tests for tagged data
Revision
552 -
Directory Listing
Modified
Wed Feb 22 03:18:07 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
and more work on saving the element jacobians (please don;t look at the code)
Revision
551 -
Directory Listing
Modified
Wed Feb 22 02:59:25 2006 UTC
(17 years, 1 month ago)
by
robwdcock
Original Path:
trunk
Scons build options for cognac.ivec.org using intel v9.0.026 compilers
Note: Boost is currently not available as a module on cognac. As a result the boost directories used in this build point to my specific boost installation which should be visible to all ivec users. This will get fixed eventually.
Revision
550 -
Directory Listing
Modified
Wed Feb 22 02:14:38 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
more tests on slicing
Revision
549 -
Directory Listing
Modified
Wed Feb 22 00:45:48 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
extend testing of DataTagged setSlice to include case where
source and target have mismatched tag sets
Revision
548 -
Directory Listing
Modified
Tue Feb 21 23:52:41 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
modify tests for binary operations and setSlice to ensure situations where two DataTaggeds with mismatched tag sets are tested correctly
Revision
547 -
Directory Listing
Modified
Tue Feb 21 06:10:54 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
solution and reduced solution can have reference numbers now!
Revision
546 -
Directory Listing
Modified
Tue Feb 21 01:59:07 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reinstate testing of DataTagged objects
Revision
545 -
Directory Listing
Modified
Tue Feb 21 01:24:05 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reinstate testing using DataTagged values
Revision
544 -
Directory Listing
Modified
Tue Feb 21 01:23:23 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor comment fixes
Revision
543 -
Directory Listing
Modified
Tue Feb 21 01:18:38 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fix BinaryOp for DataTagged values - existing implementation was adding
tags from RHS to LHS using RHS's default value - should have been using
LHS's default value! fixed now
Revision
542 -
Directory Listing
Modified
Mon Feb 20 06:53:12 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reinstate sliceSetting testing of DataTagged
Revision
541 -
Directory Listing
Modified
Mon Feb 20 06:50:39 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
ensure src and dest objects have matching tag sets in setSlice
by adding tags present in src but not in dest to dest using
dest's default value before doing actual slicing
Revision
540 -
Directory Listing
Modified
Mon Feb 20 06:05:32 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reinstate sliceGetting testing for DataTagged objects
Revision
539 -
Directory Listing
Modified
Mon Feb 20 04:12:51 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add a test case for tag() method
Revision
538 -
Directory Listing
Modified
Mon Feb 20 03:43:25 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor formatting changes
Revision
537 -
Directory Listing
Modified
Mon Feb 20 02:00:18 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
refine/extend tests for slicing, particularly those for DataTagged
Revision
536 -
Directory Listing
Modified
Fri Feb 17 03:20:53 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
symmetric and nonsymmetric part functions added
Revision
535 -
Directory Listing
Modified
Fri Feb 17 02:27:06 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor comment changes
Revision
534 -
Directory Listing
Modified
Fri Feb 17 01:03:53 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
finish testing of DataTagged::setSlice
Revision
533 -
Directory Listing
Modified
Thu Feb 16 06:49:59 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
testing setSlice with rank1 and rank 3 values and multiple tags
Revision
532 -
Directory Listing
Modified
Wed Feb 15 09:45:53 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
first steps towards the reuse of the element jacobians
Revision
531 -
Directory Listing
Modified
Wed Feb 15 08:11:10 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
a new version of lumping implemented (does not need a stiffness matrix)
Revision
530 -
Directory Listing
Modified
Wed Feb 15 07:11:00 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
eigenvalues is working now
Revision
529 -
Directory Listing
Modified
Wed Feb 15 03:58:50 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
small bugs in eigenvalues function fixed. 3x3 on data still given wrong results
Revision
528 -
Directory Listing
Modified
Wed Feb 15 02:20:33 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
local eigenvalues added (not tested yet)
Revision
527 -
Directory Listing
Modified
Wed Feb 15 01:25:57 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
extend setSlice testing to include DataTagged with default values
Revision
526 -
Directory Listing
Modified
Tue Feb 14 06:56:33 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
pdetools test added
Revision
525 -
Directory Listing
Modified
Tue Feb 14 06:56:13 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
rob's strange NoPDE class added
Revision
524 -
Directory Listing
Modified
Tue Feb 14 05:55:46 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
more testing of setSlice
Revision
523 -
Directory Listing
Modified
Tue Feb 14 05:54:41 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
symbol tests removed
Revision
522 -
Directory Listing
Modified
Tue Feb 14 05:53:52 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
now done by test_utilOnBruce.py
Revision
521 -
Directory Listing
Modified
Tue Feb 14 05:50:56 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
now done test_utilOnFinley.py
Revision
520 -
Directory Listing
Modified
Tue Feb 14 05:45:11 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
obsolet
Revision
519 -
Directory Listing
Modified
Tue Feb 14 05:30:50 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fix comments for setSlice - were totally misleading!
Revision
518 -
Directory Listing
Modified
Tue Feb 14 05:18:09 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add some basic testing for DataTagged::setSlice
Revision
517 -
Directory Listing
Modified
Tue Feb 14 02:25:02 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
tests for __getitem__ added
Revision
516 -
Directory Listing
Modified
Tue Feb 14 01:53:58 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
comprehensive testing of DataTagged::getSlice completed
Revision
515 -
Directory Listing
Modified
Mon Feb 13 05:59:51 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
split slicing testing into getSlice and setSlice tests
add testing for DataTagged objects with one tagged value
Revision
514 -
Directory Listing
Modified
Mon Feb 13 04:47:47 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add testing of slicing methods
Revision
513 -
Directory Listing
Modified
Mon Feb 13 04:46:51 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
comment and formatting changes
Revision
512 -
Directory Listing
Modified
Fri Feb 10 07:04:14 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
bug in parallelization fixed
Revision
511 -
Directory Listing
Modified
Fri Feb 10 05:39:18 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
extend basic testing of Data objects containing DataTagged objects
Revision
510 -
Directory Listing
Modified
Fri Feb 10 04:00:50 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add tests for getSampleData
Revision
509 -
Directory Listing
Modified
Fri Feb 10 03:24:44 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor comment changes
Revision
508 -
Directory Listing
Modified
Fri Feb 10 01:41:55 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
comprehensive testing of reshapeDataPoint method
Revision
507 -
Directory Listing
Modified
Thu Feb 9 06:13:07 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor comment changes
Revision
506 -
Directory Listing
Modified
Thu Feb 9 06:06:02 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
extend testing for binary and unary operations
and add comprehensive testing for method getSampleDataByTag
Revision
505 -
Directory Listing
Modified
Wed Feb 8 23:27:16 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
bandwidth optimizer but it does not really work.
Revision
504 -
Directory Listing
Modified
Wed Feb 8 05:51:27 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
initial testing of operations involving DataTagged objects
Revision
503 -
Directory Listing
Modified
Wed Feb 8 04:25:40 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add test for copy constructors
Revision
502 -
Directory Listing
Modified
Wed Feb 8 03:57:20 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add test for setTaggedValue
Revision
501 -
Directory Listing
Modified
Wed Feb 8 03:37:20 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add extensive testing of addTaggedValue
Revision
500 -
Directory Listing
Modified
Tue Feb 7 05:19:07 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fix a reference indicator
Revision
499 -
Directory Listing
Modified
Tue Feb 7 04:40:44 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add comprehensive testing for DataTagged with (1) default value only, (2) one tag value and (3) three tag values
Revision
498 -
Directory Listing
Modified
Tue Feb 7 01:53:47 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
can now specify target "build_docs" in order to build
epydoc and doxygen documentation
Revision
497 -
Directory Listing
Modified
Tue Feb 7 01:28:01 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
extend testing of default DataTagged object
Revision
496 -
Directory Listing
Modified
Tue Feb 7 01:27:14 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor fix to DataTagged::getTagNumber
changes to comments and formatting
inline two methods
Revision
495 -
Directory Listing
Modified
Mon Feb 6 06:32:06 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
performance monitoring added. complies without PAPI.
Revision
494 -
Directory Listing
Modified
Fri Feb 3 07:35:49 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
draft for performance monitor tool in paso (well, not really)
Revision
493 -
Directory Listing
Modified
Fri Feb 3 02:18:45 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
transpose added (just for me)
Revision
492 -
Directory Listing
Modified
Fri Feb 3 02:07:24 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
transpose function added
Revision
491 -
Directory Listing
Modified
Thu Feb 2 08:21:10 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
small bug fixed
Revision
490 -
Directory Listing
Modified
Thu Feb 2 07:07:21 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
tolerance in face detection added
Revision
489 -
Directory Listing
Modified
Thu Feb 2 06:27:15 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fix message file paths
Revision
488 -
Directory Listing
Modified
Thu Feb 2 06:19:23 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
build rundoxygen/runepydoc scripts on the fly based on platform dependant locations of these utilities
Revision
487 -
Directory Listing
Modified
Thu Feb 2 06:16:30 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
define epydoc PYTHONPATH setting
Revision
486 -
Directory Listing
Modified
Thu Feb 2 05:23:44 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
define locations of doxygen/epydoc executables
Revision
485 -
Directory Listing
Modified
Thu Feb 2 04:21:02 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
change scons files to match new esys_options based format
Revision
484 -
Directory Listing
Modified
Thu Feb 2 02:12:08 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add remainder of includes to SConscript includes install
Revision
483 -
Directory Listing
Modified
Thu Feb 2 02:10:15 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
change includes to use PasoUtil.h, and add remainder
of includes to SConscript include install
Revision
482 -
Directory Listing
Modified
Thu Feb 2 02:00:30 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
move Util -> PasoUtil to prevent clash with finley/Util
Revision
481 -
Directory Listing
Modified
Wed Feb 1 05:57:50 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
add mechanism to install .h files to inc directories
(still need to specify full lists of .h files to install)
Revision
480 -
Directory Listing
Modified
Wed Feb 1 05:15:12 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
rationalise #includes and forward declarations
Revision
479 -
Directory Listing
Modified
Wed Feb 1 04:36:53 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
a few more benchmarks added
Revision
478 -
Directory Listing
Modified
Tue Jan 31 02:21:49 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
rationalise #includes
Revision
477 -
Directory Listing
Modified
Mon Jan 30 07:20:20 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
rationalise #includes
Revision
476 -
Directory Listing
Modified
Mon Jan 30 06:33:08 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fix #include
Revision
475 -
Directory Listing
Modified
Mon Jan 30 05:36:15 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
rationalise #includes
Revision
474 -
Directory Listing
Modified
Mon Jan 30 04:23:44 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
restructure escript source tree
move src/Data/* -> src
remove inc
modify #includes and cpppath settings accordingly
Revision
473 -
Directory Listing
Modified
Fri Jan 27 01:59:09 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
make adjustments to allow for new source tree structure
Revision
472 -
Directory Listing
Modified
Fri Jan 27 01:50:59 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
rationalise all #includes
Revision
471 -
Directory Listing
Modified
Fri Jan 27 01:33:02 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reorganise finley src tree to remove inc dir and src/finley directory
Revision
470 -
Directory Listing
Modified
Fri Jan 27 00:10:54 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
test commit - minor comment changes
Revision
469 -
Directory Listing
Modified
Fri Jan 27 00:00:44 2006 UTC
(17 years, 1 month ago)
by
svn
Original Path:
trunk
remove paul from list of autotest mailout recipients
Revision
468 -
Directory Listing
Modified
Wed Jan 25 06:50:39 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reorganised esysUtils to remove inc directory
Revision
467 -
Directory Listing
Modified
Wed Jan 25 05:43:46 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
adjustments to includes to allow for new paso src tree structure
Revision
466 -
Directory Listing
Modified
Wed Jan 25 01:25:18 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
remove redundant inc dir from paso src tree
Revision
465 -
Directory Listing
Modified
Wed Jan 25 01:08:17 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
reorganise bruce source tree:
move all from src/Bruce -> src
remove inc
adjust all #includes appropriately
Revision
464 -
Directory Listing
Modified
Wed Jan 25 00:42:41 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
typo fixed: the anisotropic problems are returneing the correct answer now.
Revision
463 -
Directory Listing
Modified
Wed Jan 25 00:06:47 2006 UTC
(17 years, 1 month ago)
by
svn
Original Path:
trunk
now run autotest script with debug compiles switched off
Revision
462 -
Directory Listing
Modified
Wed Jan 25 00:02:03 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
traceback added
Revision
461 -
Directory Listing
Modified
Wed Jan 25 00:01:12 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
systems benchmarks run now
Revision
460 -
Directory Listing
Modified
Tue Jan 24 07:53:39 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
some mopre problems added
Revision
459 -
Directory Listing
Modified
Tue Jan 24 07:51:02 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
some mopre problems added
Revision
458 -
Directory Listing
Modified
Tue Jan 24 06:20:50 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
None options are excepted now. makes life a bit easier
Revision
457 -
Directory Listing
Modified
Tue Jan 24 06:13:03 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
fix installation to directories specified by pyinstall and libinstall
Revision
456 -
Directory Listing
Modified
Tue Jan 24 04:38:50 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor formatting changes
Revision
455 -
Directory Listing
Modified
Tue Jan 24 04:36:54 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
minor comment and formatting changes
Revision
454 -
Directory Listing
Modified
Tue Jan 24 01:34:31 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
replace libdir default settings - SConstruct was broken without them
Revision
453 -
Directory Listing
Modified
Tue Jan 24 01:23:28 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
reset the solver
Revision
452 -
Directory Listing
Modified
Mon Jan 23 23:48:50 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
iter_max increased
Revision
451 -
Directory Listing
Modified
Mon Jan 23 23:45:43 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
failing rin is catched now.
Revision
450 -
Directory Listing
Modified
Mon Jan 23 05:04:45 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
remove old make based build system
Revision
449 -
Directory Listing
Modified
Mon Jan 23 03:48:51 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk
finley source directories now merged into one directory: src/finley
Revision
448 -
Directory Listing
Modified
Mon Jan 23 03:04:06 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
small typy fixed
Revision
447 -
Directory Listing
Modified
Mon Jan 23 02:59:59 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
a simple linear elastic solver
Revision
446 -
Directory Listing
Modified
Mon Jan 23 00:36:07 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
typo fixed
Revision
445 -
Directory Listing
Modified
Sun Jan 22 23:58:14 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
obsolet GradTest removed
Revision
444 -
Directory Listing
Modified
Sun Jan 22 23:56:14 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk
required modifications to get the tests going
Revision
443 -
Directory Listing
Modified
Fri Jan 20 06:22:38 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
L2 function added
Revision
442 -
Directory Listing
Modified
Fri Jan 20 04:39:43 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
kronecker (and relatives) take now a FunctionSpace as argument and return a Data object in tthis functionspace
Revision
441 -
Directory Listing
Modified
Fri Jan 20 03:40:39 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
and finally test for the divergence operator added. div() has been modified to take Symbol arguments
Revision
440 -
Directory Listing
Modified
Fri Jan 20 02:15:48 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
tests for normals at boundary and contact region added
Revision
439 -
Directory Listing
Modified
Fri Jan 20 01:46:22 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
tests for interpolation added
Revision
438 -
Directory Listing
Modified
Fri Jan 20 00:39:00 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
test for the grad fucntion added
Revision
437 -
Directory Listing
Modified
Fri Jan 20 00:16:58 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
comprehensive testing for integrate function added. tests for grad will be added in the next check in. GradTest is obsolete now.
Revision
436 -
Directory Listing
Modified
Thu Jan 19 22:36:36 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
bug fixed in integrate method. don;t use a[i,j]=.. to set a value in the numeric::array a but
a[make_tuple(i,j)].
Revision
435 -
Directory Listing
Modified
Thu Jan 19 03:57:30 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
minor change
Revision
434 -
Directory Listing
Modified
Thu Jan 19 01:53:16 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
prints out the benchmark been started
Revision
433 -
Directory Listing
Modified
Tue Jan 17 23:54:38 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
new function inverse and tests added
Revision
432 -
Directory Listing
Modified
Fri Jan 13 07:38:54 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
some fixes for openmp
Revision
431 -
Directory Listing
Modified
Fri Jan 13 05:07:10 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
new implementation of ILU0
Revision
430 -
Directory Listing
Modified
Wed Jan 11 06:40:50 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
ILU has been replicated is called RILU (recursive ILU) now. ILU will now be reimplemented.
Revision
429 -
Directory Listing
Modified
Wed Jan 11 05:53:40 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
new implementation and testing for trace function
Revision
428 -
Directory Listing
Modified
Wed Jan 11 01:38:16 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
interplotared is changed from method to function call
Revision
427 -
Directory Listing
Modified
Tue Jan 10 04:24:07 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
typo fixed
Revision
426 -
Directory Listing
Modified
Tue Jan 10 04:17:43 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
some commends added
Revision
425 -
Directory Listing
Modified
Tue Jan 10 04:10:39 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
The sparse solver can be called by paso now.
the building has been change to reduce some code redundancy:
now all scons SCscripts are importing scons/esys_options.py which
imports platform specific settings.
Revision
424 -
Directory Listing
Modified
Tue Jan 10 04:06:58 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
some minor changes
Revision
423 -
Directory Listing
Modified
Fri Jan 6 08:09:43 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
some modifications in visualization to get equidistant output
Revision
422 -
Directory Listing
Modified
Fri Jan 6 03:10:54 2006 UTC
(17 years, 2 months ago)
by
cochrane
Original Path:
trunk
Implemented plotting of escript Data objects. This only works with the vtk
renderer module at this stage.
Revision
421 -
Directory Listing
Modified
Fri Jan 6 03:09:11 2006 UTC
(17 years, 2 months ago)
by
cochrane
Original Path:
trunk
Updated to current version of .todo file.
Revision
420 -
Directory Listing
Modified
Fri Jan 6 03:08:28 2006 UTC
(17 years, 2 months ago)
by
cochrane
Original Path:
trunk
Updated to current state of .todo file.
Revision
419 -
Directory Listing
Modified
Fri Jan 6 03:01:27 2006 UTC
(17 years, 2 months ago)
by
cochrane
Original Path:
trunk
Initial import to repository. This is the vtk-specific code for the arrow
plot example.
Revision
418 -
Directory Listing
Modified
Fri Jan 6 01:55:18 2006 UTC
(17 years, 2 months ago)
by
cochrane
Original Path:
trunk
Initial import to repository. This is the script that runs all the escript
example scripts.
Revision
417 -
Directory Listing
Modified
Fri Jan 6 01:54:48 2006 UTC
(17 years, 2 months ago)
by
cochrane
Original Path:
trunk
Initial import to repository. These are the example scripts specific for
escript Data object testing.
Revision
416 -
Directory Listing
Modified
Wed Jan 4 05:38:35 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
changes in Paso have been worked in
Revision
415 -
Directory Listing
Modified
Wed Jan 4 05:37:33 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
a better way of representing the matrix format type is introduced. this is needed for the Paradiso and UMFPACK interface
Revision
414 -
Directory Listing
Modified
Wed Jan 4 05:29:05 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
bug in CPP substitute fixed.
Revision
413 -
Directory Listing
Modified
Tue Jan 3 08:27:19 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
inner returns right functionspace now
Revision
412 -
Directory Listing
Modified
Tue Jan 3 00:41:56 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
nicer wahy of representing the natrix format is introduced
Revision
411 -
Directory Listing
Modified
Tue Jan 3 00:23:48 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk
SCSL interface has moved
Revision
410 -
Directory Listing
Modified
Fri Dec 23 01:27:38 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
bug fixed
Revision
409 -
Directory Listing
Modified
Fri Dec 23 01:13:41 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
bug fixed
Revision
408 -
Directory Listing
Modified
Fri Dec 23 00:56:56 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Added a check to make sure the vtk file exists.
Revision
407 -
Directory Listing
Modified
Fri Dec 23 00:45:08 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
bug fixed
Revision
406 -
Directory Listing
Modified
Fri Dec 23 00:39:59 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
bug fixed
Revision
405 -
Directory Listing
Modified
Thu Dec 22 23:05:31 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
small bug fixed
Revision
404 -
Directory Listing
Modified
Thu Dec 22 23:04:55 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
direct solver works for symmetry flag now
Revision
403 -
Directory Listing
Modified
Thu Dec 22 22:54:32 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
solver method is now selcted by matrix format
Revision
402 -
Directory Listing
Modified
Thu Dec 22 22:46:54 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
cut of for small values
Revision
401 -
Directory Listing
Modified
Thu Dec 22 06:39:36 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
some new models added
Revision
400 -
Directory Listing
Modified
Wed Dec 21 23:13:39 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
Some chnages required for oder numarray versions. mai problem is that
operations on array objects with rank 0 sometimes return float rather
than arrays. This problem seems to be fixed in newer releases.
Revision
399 -
Directory Listing
Modified
Wed Dec 21 22:43:48 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
frame to run a single test out of the test_util suite
Revision
398 -
Directory Listing
Modified
Wed Dec 21 07:52:54 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
file reader added
Revision
397 -
Directory Listing
Modified
Wed Dec 21 05:11:31 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
typo fixed
Revision
396 -
Directory Listing
Modified
Wed Dec 21 05:08:25 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
tests for clip, maximum, minimum added
Revision
395 -
Directory Listing
Modified
Wed Dec 21 02:41:59 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
test is splitted to reduce memory demand during compilation
Revision
394 -
Directory Listing
Modified
Tue Dec 20 07:20:32 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
symmetric matrix in SCSL switched off
Revision
393 -
Directory Listing
Modified
Tue Dec 20 05:40:43 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
set number of threads works now
Revision
392 -
Directory Listing
Modified
Tue Dec 20 05:39:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
Utils added for compilation
Revision
391 -
Directory Listing
Modified
Tue Dec 20 05:36:50 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
intreface for setting the number of threads from python
Revision
390 -
Directory Listing
Modified
Tue Dec 20 03:39:24 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
os.loginname does not work under pbs. the exception is caught now
Revision
389 -
Directory Listing
Modified
Tue Dec 20 03:17:28 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
Laplace benchmarks added
Revision
388 -
Directory Listing
Modified
Tue Dec 20 03:13:17 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
laplace benchmarks added
Revision
387 -
Directory Listing
Modified
Tue Dec 20 00:37:20 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
scale allows now to switch on and off certain problems
Revision
386 -
Directory Listing
Modified
Tue Dec 20 00:31:52 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
the number of problems to run is now the less or equal then len(scale) and less or equal number of problems. This allows easier control
Revision
385 -
Directory Listing
Modified
Mon Dec 19 06:12:14 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
filerrs added
Revision
384 -
Directory Listing
Modified
Mon Dec 19 06:11:32 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
finleybench is build now
Revision
383 -
Directory Listing
Modified
Mon Dec 19 06:10:45 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
Finley options added plus some other stuff
Revision
382 -
Directory Listing
Modified
Mon Dec 19 06:09:49 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
run finley benchmark
Revision
381 -
Directory Listing
Modified
Mon Dec 19 03:15:44 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
first version of a finley benchmark suite for test the paso solver
Revision
380 -
Directory Listing
Modified
Mon Dec 19 01:54:51 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
the documenation build does not work at all except on our altix. has been switcehed of for now
Revision
379 -
Directory Listing
Modified
Mon Dec 19 01:10:34 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
a filetr added
Revision
378 -
Directory Listing
Modified
Fri Dec 16 09:02:28 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
clip added
Revision
377 -
Directory Listing
Modified
Fri Dec 16 02:00:35 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add a few more escript python tests to the list executed
Revision
376 -
Directory Listing
Modified
Fri Dec 16 01:49:18 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
removed redundant test
Revision
375 -
Directory Listing
Modified
Fri Dec 16 01:44:11 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix method names to match new scheme
Revision
374 -
Directory Listing
Modified
Fri Dec 16 01:35:07 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix names of log/ln functions to match new scheme
Revision
373 -
Directory Listing
Modified
Fri Dec 16 01:31:06 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
modified number of data points in mesh to allow
testing with Bruce Function objects
Revision
372 -
Directory Listing
Modified
Fri Dec 16 01:12:41 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
explicitly initialise integer members to zero
Revision
371 -
Directory Listing
Modified
Fri Dec 16 00:57:13 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Added ability to specify the compression pattern at the command line.
Revision
370 -
Directory Listing
Modified
Fri Dec 16 00:52:34 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Updated to allow for building of API documentation.
Revision
369 -
Directory Listing
Modified
Fri Dec 16 00:51:22 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Building of API documentation now works. Both epydoc- and doxygen-generated
docs are built.
Revision
368 -
Directory Listing
Modified
Thu Dec 15 23:23:12 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
and a bit more on version detection
Revision
367 -
Directory Listing
Modified
Thu Dec 15 22:55:46 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
include file for python is now detected
Revision
366 -
Directory Listing
Modified
Thu Dec 15 06:05:55 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
formatting changes
Revision
365 -
Directory Listing
Modified
Thu Dec 15 05:00:05 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
formatting changes
Revision
364 -
Directory Listing
Modified
Thu Dec 15 04:38:28 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
a simple environment to run benchmarks (mainly for testing solvers)
Revision
363 -
Directory Listing
Modified
Thu Dec 15 04:38:19 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
moved to scons based autotest now
Revision
362 -
Directory Listing
Modified
Thu Dec 15 02:07:55 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
removed unit-test runner scripts as unit-tests now run from scons
Revision
361 -
Directory Listing
Modified
Thu Dec 15 02:04:58 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
autotest script now runs unit tests via scons
Revision
360 -
Directory Listing
Modified
Thu Dec 15 01:52:16 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add target to run all unit tests, the build will fail
for this target if any unit test fails
Revision
359 -
Directory Listing
Modified
Thu Dec 15 01:08:03 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
runUnitTest now returns an error code if the test fails
Revision
358 -
Directory Listing
Modified
Wed Dec 14 07:55:19 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Updated link to epydoc generated documentation on the web site.
Revision
357 -
Directory Listing
Modified
Wed Dec 14 05:41:24 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add explicit target to run unit tests
Revision
356 -
Directory Listing
Modified
Wed Dec 14 05:37:24 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add scons line to build unit-tests
Revision
355 -
Directory Listing
Modified
Wed Dec 14 05:05:31 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add explicit target for building of unit tests
Revision
354 -
Directory Listing
Modified
Wed Dec 14 04:46:17 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Fixed paths for new running of docs autobuild.
Revision
353 -
Directory Listing
Modified
Wed Dec 14 04:13:59 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
bug fixed (thanks to Estelle)
Revision
352 -
Directory Listing
Modified
Wed Dec 14 02:21:37 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
turns out Install() targets should also be made Default()
targets if you want them to actually reliably work!
Revision
351 -
Directory Listing
Modified
Tue Dec 13 09:12:15 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
time integration manger added
Revision
350 -
Directory Listing
Modified
Tue Dec 13 09:11:52 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
test for time integration manger added
Revision
349 -
Directory Listing
Modified
Tue Dec 13 07:35:31 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
bug fixed
Revision
348 -
Directory Listing
Modified
Tue Dec 13 07:33:10 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
advection diffusion class added
Revision
347 -
Directory Listing
Modified
Tue Dec 13 06:16:16 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
fix mail recipients list
Revision
346 -
Directory Listing
Modified
Tue Dec 13 05:31:48 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
fix setting of working directory
Revision
345 -
Directory Listing
Modified
Tue Dec 13 05:23:45 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
advection diffusion class added
Revision
344 -
Directory Listing
Modified
Tue Dec 13 05:17:32 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
now report name of python tests scripts which fail
Revision
343 -
Directory Listing
Modified
Tue Dec 13 03:39:42 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
create build directory structure for documentation
Revision
342 -
Directory Listing
Modified
Tue Dec 13 01:50:42 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
minor formatting fix
Revision
341 -
Directory Listing
Modified
Mon Dec 12 05:26:10 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
some fixes to make the test to run for older numarray versions
Revision
340 -
Directory Listing
Modified
Mon Dec 12 05:10:45 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
pass in pyinstall value from top-level scons script and add
correct suffix in module level scons scipr
Revision
339 -
Directory Listing
Modified
Mon Dec 12 04:22:19 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add extra tests to list of python tests to run
keep going with tests even once one test fails
Revision
338 -
Directory Listing
Modified
Mon Dec 12 02:05:32 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
removed links which are now managed by svn
Revision
337 -
Directory Listing
Modified
Mon Dec 12 01:57:07 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Initial merge of pyvisi into esys repository.
Revision
336 -
Directory Listing
Modified
Thu Dec 8 23:34:44 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
add esysUtils unit tests
Revision
335 -
Directory Listing
Modified
Thu Dec 8 22:55:50 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
script to run esysUtils unit tests
Revision
334 -
Directory Listing
Modified
Thu Dec 8 22:52:12 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
use socket.gethostname() to get host name
Revision
331 -
Directory Listing
Modified
Wed Dec 7 06:46:24 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
fix list of mail recipients
Revision
330 -
Directory Listing
Modified
Wed Dec 7 06:31:27 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
rough script to run autotest using scons build system
Revision
329 -
Directory Listing
Modified
Wed Dec 7 04:42:43 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
fixing the problem that older versions of numarray don't have a sign method
Revision
328 -
Directory Listing
Modified
Wed Dec 7 04:41:53 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
start to remove slicing opertions
Revision
327 -
Directory Listing
Modified
Wed Dec 7 04:32:28 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
make them run again
Revision
326 -
Directory Listing
Modified
Wed Dec 7 03:55:19 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Fixed bug with not getting the movie parameter correctly. Also no longer
cleaning up the movie files if the movie generation failed.
Revision
325 -
Directory Listing
Modified
Wed Dec 7 02:08:17 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
now determine hostname via socket.gethostname() as HOSTNAME
environment variable is apparently not set on all platforms
Revision
324 -
Directory Listing
Modified
Wed Dec 7 01:10:36 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add symlinks to include files - previously added by hand as cvs couldn't
handle them
Revision
323 -
Directory Listing
Modified
Tue Dec 6 06:18:00 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
whereZero methods changed to functions
Revision
322 -
Directory Listing
Modified
Tue Dec 6 04:53:30 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add modelframe.py to list of python modules to install
Revision
321 -
Directory Listing
Modified
Tue Dec 6 04:46:50 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
rough python test running code added
Revision
320 -
Directory Listing
Modified
Tue Dec 6 04:35:27 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
unit tests now run ok
Revision
319 -
Directory Listing
Modified
Tue Dec 6 04:25:37 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
temporary unit tests scripts
Revision
318 -
Directory Listing
Modified
Tue Dec 6 02:25:26 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
draft autotest script using the scons build system
Revision
317 -
Directory Listing
Modified
Tue Dec 6 01:36:53 2005 UTC
(17 years, 3 months ago)
by
svn
Original Path:
trunk
add Lutz's new tests for finley and bruce to list of python tests
run by ./mk py_test
Revision
316 -
Directory Listing
Modified
Tue Dec 6 01:16:05 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix this test
Revision
315 -
Directory Listing
Modified
Tue Dec 6 01:13:57 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
change method calls to match new names for Data methods
Revision
314 -
Directory Listing
Modified
Tue Dec 6 00:55:22 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
rename method calls to match new Data boost interface names
Revision
313 -
Directory Listing
Modified
Mon Dec 5 07:01:36 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
and a bit more tests
Revision
312 -
Directory Listing
Modified
Mon Dec 5 07:01:00 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
reimplementation of maxval,minval and length. small bug in generalTensorProduct fixed
Revision
311 -
Directory Listing
Modified
Mon Dec 5 02:59:54 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
remove references to ln and length methods which have been removed
from class Data
Revision
310 -
Directory Listing
Modified
Mon Dec 5 02:52:38 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
don't automatically run bruce unit tests on build for now
Revision
309 -
Directory Listing
Modified
Mon Dec 5 01:59:58 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
now load default options - by default!
Revision
308 -
Directory Listing
Modified
Mon Dec 5 01:58:33 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
rename
Revision
307 -
Directory Listing
Modified
Mon Dec 5 01:58:18 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
build unit tests from main scons file now
Revision
306 -
Directory Listing
Modified
Mon Dec 5 00:48:01 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add dependency between unit test and library
Revision
304 -
Directory Listing
Modified
Fri Dec 2 06:04:06 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
changes in util.py worked in
Revision
303 -
Directory Listing
Modified
Fri Dec 2 05:54:01 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
is now in modellib
Revision
302 -
Directory Listing
Modified
Fri Dec 2 05:51:51 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
runs again
Revision
301 -
Directory Listing
Modified
Fri Dec 2 05:49:29 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
runs again
Revision
300 -
Directory Listing
Modified
Fri Dec 2 05:47:17 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
runs again
Revision
299 -
Directory Listing
Modified
Fri Dec 2 05:45:38 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
runs again
Revision
298 -
Directory Listing
Modified
Fri Dec 2 05:42:11 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
runs again
Revision
297 -
Directory Listing
Modified
Fri Dec 2 04:57:48 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
bruce tests cases are now automatically run whenever they are rebuilt
Revision
296 -
Directory Listing
Modified
Fri Dec 2 03:55:36 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
test passes now
Revision
295 -
Directory Listing
Modified
Fri Dec 2 03:53:35 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
test for symbol.py on bruce
Revision
294 -
Directory Listing
Modified
Fri Dec 2 03:47:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
test of symbols.py with python
Revision
293 -
Directory Listing
Modified
Fri Dec 2 03:46:39 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
updated
Revision
292 -
Directory Listing
Modified
Fri Dec 2 03:11:04 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
complete test set for generalTensorProduct and friends added.
Revision
291 -
Directory Listing
Modified
Fri Dec 2 03:10:06 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
just my private test generator
Revision
290 -
Directory Listing
Modified
Fri Dec 2 03:09:32 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
some minor bugs in util.py fixed.
Revision
289 -
Directory Listing
Modified
Fri Dec 2 03:08:26 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
new test for util.py on bruce
Revision
288 -
Directory Listing
Modified
Fri Dec 2 01:55:04 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
now automatically build unit tests as required based on dependencies
between unit tests and libraries
Revision
287 -
Directory Listing
Modified
Thu Dec 1 06:40:51 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
more tests added
Revision
286 -
Directory Listing
Modified
Thu Dec 1 06:40:20 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
length method is removed as it is too slow. use length in util.py instead
Revision
285 -
Directory Listing
Modified
Thu Dec 1 06:40:04 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
length method is removed as it is too slow. use length in util.py instead
Revision
284 -
Directory Listing
Modified
Thu Dec 1 06:39:23 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
test are passed now
Revision
283 -
Directory Listing
Modified
Wed Nov 30 23:35:29 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
some stuff
Revision
282 -
Directory Listing
Modified
Wed Nov 30 09:18:38 2005 UTC
(17 years, 3 months ago)
by
elspeth
Original Path:
trunk
Fixed XML duplication in output bug.
Revision
281 -
Directory Listing
Modified
Wed Nov 30 09:10:59 2005 UTC
(17 years, 3 months ago)
by
elspeth
Original Path:
trunk
Fixed import problem
Revision
280 -
Directory Listing
Modified
Wed Nov 30 06:23:59 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Using the tsunami initial amplitude to determine the wave height mapper
scalar range.
Revision
279 -
Directory Listing
Modified
Wed Nov 30 05:23:09 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
links to esys shared libraries
Revision
278 -
Directory Listing
Modified
Wed Nov 30 05:22:00 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
__init__.py file for the esys python modules
Revision
277 -
Directory Listing
Modified
Wed Nov 30 04:52:39 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
explicitly define dependencies between modules
Revision
276 -
Directory Listing
Modified
Wed Nov 30 04:31:40 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Replaced wave grid creation code to load wave grid from file.
Revision
275 -
Directory Listing
Modified
Wed Nov 30 04:27:00 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
remove -ftz flag from linker flags - has no effect anyway
Revision
274 -
Directory Listing
Modified
Wed Nov 30 04:16:39 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix list of targets
Revision
273 -
Directory Listing
Modified
Wed Nov 30 03:30:40 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
cast to float added. this avoids problems with very small values
Revision
272 -
Directory Listing
Modified
Wed Nov 30 03:30:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
cast to float added. this avoids problems with very small coodinates.
Revision
271 -
Directory Listing
Modified
Wed Nov 30 03:27:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
cast to float added. this avoids problems with very small values
Revision
270 -
Directory Listing
Modified
Wed Nov 30 02:00:26 2005 UTC
(17 years, 3 months ago)
by
elspeth
Original Path:
trunk
Fixed imports
Revision
269 -
Directory Listing
Modified
Wed Nov 30 01:59:55 2005 UTC
(17 years, 3 months ago)
by
elspeth
Original Path:
trunk
Fixed typos and import problems
Revision
268 -
Directory Listing
Modified
Wed Nov 30 01:39:47 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
setup scons configuration to make and install python code
Revision
267 -
Directory Listing
Modified
Wed Nov 30 01:13:10 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fixed typo in options string
Revision
266 -
Directory Listing
Modified
Wed Nov 30 00:21:51 2005 UTC
(17 years, 3 months ago)
by
elspeth
Original Path:
trunk
Added handling for NoneType
Revision
265 -
Directory Listing
Modified
Tue Nov 29 22:56:08 2005 UTC
(17 years, 3 months ago)
by
elspeth
Original Path:
trunk
Minor bugfix - should now actually run simulations
Revision
264 -
Directory Listing
Modified
Tue Nov 29 10:06:39 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Removing image files after generation of movie.
Revision
263 -
Directory Listing
Modified
Tue Nov 29 09:55:16 2005 UTC
(17 years, 3 months ago)
by
cochrane
Original Path:
trunk
Added visualisation of bathymmetry data, the coastline and the wave height
data as per earlier tsunami movies. Also autogenerates the .params file for
ppmtompeg and generates the movie automatically.
Revision
262 -
Directory Listing
Modified
Tue Nov 29 07:35:12 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
tsunami added
Revision
261 -
Directory Listing
Modified
Tue Nov 29 07:34:35 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
runmodel added
Revision
260 -
Directory Listing
Modified
Tue Nov 29 07:34:06 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
small fix
Revision
259 -
Directory Listing
Modified
Tue Nov 29 07:14:41 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
some minor fixes
Revision
258 -
Directory Listing
Modified
Tue Nov 29 06:43:14 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add options file for the prism (not tested yet)
Revision
257 -
Directory Listing
Modified
Tue Nov 29 06:23:50 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fixed specification of solver libs
Revision
256 -
Directory Listing
Modified
Tue Nov 29 06:22:53 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fixed specification of solver libs
Revision
255 -
Directory Listing
Modified
Tue Nov 29 06:13:22 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
pass in solver libraries to link with via options files now
Revision
254 -
Directory Listing
Modified
Tue Nov 29 06:12:55 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
another alternative options file
Revision
253 -
Directory Listing
Modified
Tue Nov 29 06:05:20 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
missed this one
Revision
252 -
Directory Listing
Modified
Tue Nov 29 05:58:03 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
pass in platform specific libraries via options files now
Revision
251 -
Directory Listing
Modified
Tue Nov 29 05:54:06 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
problems with coordinate axis fixed
Revision
250 -
Directory Listing
Modified
Tue Nov 29 05:32:57 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
initial checkin
Revision
249 -
Directory Listing
Modified
Tue Nov 29 05:29:09 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix compiler options to enable compilation on gcc platforms
Revision
248 -
Directory Listing
Modified
Tue Nov 29 04:58:23 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add top level scons config files to allow building
of all unit tests for each module at once
Revision
247 -
Directory Listing
Modified
Tue Nov 29 04:57:38 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk
initial checkin
Revision
246 -
Directory Listing
Modified
Tue Nov 29 04:27:00 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
allow compile options to be loaded from a config
file specified on the command line to scons
Revision
245 -
Directory Listing
Modified
Tue Nov 29 02:11:05 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
added some comments and reasonable default values
Revision
244 -
Directory Listing
Modified
Tue Nov 29 00:27:10 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fixed an accidental commit which broke this script
Revision
243 -
Directory Listing
Modified
Mon Nov 28 06:36:40 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add a default options file - basis for other custom options files
Revision
242 -
Directory Listing
Modified
Mon Nov 28 06:20:51 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
draft toplevel unit test scons script for bruce unit tests
Revision
241 -
Directory Listing
Modified
Mon Nov 28 06:14:47 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
if usegcc=1 is set on command line, load compiler options
fropm scons/gcc_options.py
Revision
239 -
Directory Listing
Modified
Mon Nov 28 05:49:32 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
read names of python and boost libraries from config file now
Revision
238 -
Directory Listing
Modified
Mon Nov 28 05:33:38 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix quoting of library names
Revision
237 -
Directory Listing
Modified
Mon Nov 28 05:26:43 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
first draft of options file for gcc platforms
Revision
236 -
Directory Listing
Modified
Mon Nov 28 05:25:35 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
add names of python and boost libraries to config file
Revision
235 -
Directory Listing
Modified
Mon Nov 28 04:36:16 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
change scons config files for escript unit tests to read
compiler options from option file now
Revision
228 -
Directory Listing
Modified
Fri Nov 25 02:01:14 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
now read compile options from options file
Revision
227 -
Directory Listing
Modified
Fri Nov 25 01:49:23 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
now load compile options from options file
Revision
226 -
Directory Listing
Modified
Fri Nov 25 01:40:04 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
import compile options into bruce unit test builds from options file now
Revision
225 -
Directory Listing
Modified
Fri Nov 25 01:22:34 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
pass in correct options to archiver for static libraries
Revision
224 -
Directory Listing
Modified
Fri Nov 25 00:33:27 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
implement switching of debug compiler options based on command line flag 'debug'
Revision
223 -
Directory Listing
Modified
Thu Nov 24 23:12:13 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
pass in cc/cxx settings from config file
Revision
217 -
Directory Listing
Modified
Thu Nov 24 06:48:50 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
import sys
Revision
216 -
Directory Listing
Modified
Thu Nov 24 06:35:14 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
first pass at importing compile options from an external file'
Revision
215 -
Directory Listing
Modified
Thu Nov 24 06:25:15 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
added directory and first draft file to hold options settings
for different configurations (debug/nodebug, host, etc)
Revision
214 -
Directory Listing
Modified
Thu Nov 24 05:15:26 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
collect all information needed to determine build
configuration (ie: debug/nodebug, host, platform etc)
Revision
211 -
Directory Listing
Modified
Thu Nov 24 00:29:23 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
removed
Revision
208 -
Directory Listing
Modified
Wed Nov 23 05:08:45 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
?
Revision
207 -
Directory Listing
Modified
Wed Nov 23 05:08:19 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fixed permissions on these files
Revision
206 -
Directory Listing
Modified
Wed Nov 23 05:03:42 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
remove MeshAdapter test for now - will only work with scons build system
Revision
205 -
Directory Listing
Modified
Wed Nov 23 05:02:59 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
fix settings to account for new finley source tree structure
Revision
204 -
Directory Listing
Modified
Wed Nov 23 04:43:51 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
revised scons files to account for new finley source tree structure
Revision
203 -
Directory Listing
Modified
Wed Nov 23 04:36:15 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
adjust include file names to allow for new finley source tree structure
Revision
202 -
Directory Listing
Modified
Wed Nov 23 04:18:39 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
scons builds will now take place in parallel "finley" src dir
Revision
201 -
Directory Listing
Modified
Wed Nov 23 04:10:21 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk
copy finleyC and CPPAdapter to finley and finley/CPPAdapter to
facilitate scons builds
Revision
199 -
Directory Listing
Modified
Tue Nov 22 04:57:00 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
pass in static archiver flags
Revision
198 -
Directory Listing
Modified
Tue Nov 22 04:17:02 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
fix uninstall target to also clean up static libraries (eg: paso)
Revision
197 -
Directory Listing
Modified
Tue Nov 22 02:01:35 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons construct file for esysUtils unit tests
Revision
196 -
Directory Listing
Modified
Tue Nov 22 01:48:33 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft scons construct files for remaining escript unit tests
Revision
195 -
Directory Listing
Modified
Tue Nov 22 00:31:11 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons construct file for BruceFactory unit tests
Revision
193 -
Directory Listing
Modified
Mon Nov 21 06:41:30 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
add draft SConstruct file for Bruce unit_tests
Revision
192 -
Directory Listing
Modified
Mon Nov 21 04:52:14 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
pass in top level install directory for finley/escript/bruce/paso
libraries when building via top level scons script
Revision
191 -
Directory Listing
Modified
Mon Nov 21 04:10:12 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
push platform dependent compiler flags and include directories up to library level scons files - these will eventually be brought in from external config files
Revision
190 -
Directory Listing
Modified
Mon Nov 21 03:27:42 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
pass in value for esysroot and use this to determine include file locations
Revision
189 -
Directory Listing
Modified
Mon Nov 21 03:26:46 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
add top level SConstruct file to enable coordinated building of all esys libraries
Revision
188 -
Directory Listing
Modified
Mon Nov 21 01:20:26 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
explicitly add -fpic option to all compiler options lists
to ensure relocatable code is generated
Revision
187 -
Directory Listing
Modified
Mon Nov 21 01:15:26 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
added first draft of scons construct/config scripts for paso library
Revision
184 -
Directory Listing
Modified
Fri Nov 18 06:14:18 2005 UTC
(17 years, 4 months ago)
by
phornby
Original Path:
trunk
Remove unnecessary unary +'s from the numarray.array's because this is broken in some
versions of numarray.
Revision
183 -
Directory Listing
Modified
Fri Nov 18 05:24:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
can now build finleyC/finleycpp concurrently
Revision
182 -
Directory Listing
Modified
Fri Nov 18 05:07:36 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of config/construct files for finleyC/finleycpp libraries
Revision
181 -
Directory Listing
Modified
Fri Nov 18 04:28:47 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of config/construct scripts for escript library
Revision
180 -
Directory Listing
Modified
Fri Nov 18 03:29:44 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config scripts for esysUtils library
Revision
179 -
Directory Listing
Modified
Fri Nov 18 03:20:34 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config/construct scripts for mmio library
Revision
178 -
Directory Listing
Modified
Fri Nov 18 03:13:26 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config/construct files for CppUnitTest library
Revision
177 -
Directory Listing
Modified
Fri Nov 18 02:50:20 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
reformatted list of source files
Revision
176 -
Directory Listing
Modified
Fri Nov 18 01:49:12 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config/construct files to build brucecpp.so library
Revision
175 -
Directory Listing
Modified
Fri Nov 11 04:06:00 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
definitely the last test commit!
Revision
174 -
Directory Listing
Modified
Fri Nov 11 04:03:33 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
possibly the last test commit
Revision
173 -
Directory Listing
Modified
Fri Nov 11 03:50:50 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit message
Revision
172 -
Directory Listing
Modified
Fri Nov 11 02:03:48 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
171 -
Directory Listing
Modified
Fri Nov 11 02:02:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
170 -
Directory Listing
Modified
Fri Nov 11 02:01:42 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
169 -
Directory Listing
Modified
Fri Nov 11 01:51:16 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
168 -
Directory Listing
Modified
Fri Nov 11 01:48:47 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
167 -
Directory Listing
Modified
Fri Nov 11 01:39:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
166 -
Directory Listing
Modified
Fri Nov 11 01:38:41 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
165 -
Directory Listing
Modified
Fri Nov 11 00:46:40 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
a test commit to svn
Revision
164 -
Directory Listing
Modified
Fri Nov 11 00:45:35 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
a test commit to svn of mk
Revision
163 -
Directory Listing
Modified
Fri Nov 11 00:11:34 2005 UTC
(17 years, 4 months ago)
by
svn
Original Path:
trunk
remove unreliable finley tests for sake of autotest script
Revision
162 -
Directory Listing
Modified
Fri Nov 11 00:09:59 2005 UTC
(17 years, 4 months ago)
by
svn
Original Path:
trunk
convert autotest script to use svn repository
Revision
161 -
Directory Listing
Modified
Thu Nov 10 06:49:15 2005 UTC
(17 years, 4 months ago)
by
svn
Original Path:
trunk
modifying to use the svn repository
Revision
160 -
Directory Listing
Modified
Thu Nov 10 05:09:25 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
fixed a broken constructor - simply didn't work
Revision
159 -
Directory Listing
Modified
Thu Nov 10 04:01:43 2005 UTC
(17 years, 4 months ago)
by
matt
Original Path:
trunk
Added a more comprehensive data equivalence test based on X coordinates.
Revision
158 -
Directory Listing
Modified
Thu Nov 10 03:51:03 2005 UTC
(17 years, 4 months ago)
by
matt
Original Path:
trunk
Added finley and bruce rectangle and brick Data archive tests.
Revision
157 -
Directory Listing
Modified
Wed Nov 9 10:01:06 2005 UTC
(17 years, 4 months ago)
by
gross
Original Path:
trunk
initial checkin
Revision
155 -
Directory Listing
Modified
Wed Nov 9 02:02:19 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
move all directories from trunk/esys2 into trunk and remove esys2
Revision
154 -
Directory Listing
Modified
Mon Nov 7 05:51:17 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-11-07
Revision
153 -
Directory Listing
Modified
Tue Oct 25 01:51:20 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-10-25
Revision
152 -
Directory Listing
Modified
Fri Oct 21 08:32:21 2005 UTC
(17 years, 5 months ago)
by
phornby
Original Path:
trunk
DataConstantTestCase.cpp, DataExpandedTestCase.cpp:
Replace
DataExpanded testData1(FunctionSpace(),....)
with
FunctionSpace tmp_fns;
DataExpanded testData1(tmp_fns,shape,data);
for GCC's sake.
Added some profiling to PoissonSolverTest.py.
Revision
151 -
Directory Listing
Modified
Thu Sep 22 01:55:00 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-09-22
Revision
150 -
Directory Listing
Modified
Thu Sep 15 03:44:45 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-09-15
Revision
149 -
Directory Listing
Modified
Thu Sep 1 03:31:39 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-09-01
Revision
148 -
Directory Listing
Modified
Tue Aug 23 01:24:31 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-08-23
Revision
147 -
Directory Listing
Modified
Fri Aug 12 01:45:47 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
erge of development branch dev-02 back to main trunk on 2005-08-12
Revision
146 -
Directory Listing
Modified
Fri Jul 29 01:44:29 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
First merge of development branch dev-02 back to main trunk on 2005-07-29
Revision
145 -
Directory Listing
Modified
Mon Jul 25 05:43:00 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
don't build modellib by default
Revision
144 -
Directory Listing
Modified
Mon Jul 25 05:42:21 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
moved form old modellib directory
Revision
143 -
Directory Listing
Modified
Mon Jul 25 05:39:50 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
moved these files to modellib directory
Revision
142 -
Directory Listing
Modified
Mon Jul 25 05:28:20 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-25
Revision
141 -
Directory Listing
Modified
Mon Jul 25 05:15:41 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
fixed to work with new python source/install directory structure
Revision
140 -
Directory Listing
Modified
Mon Jul 25 00:08:42 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
add __init__.pyc to install list
Revision
139 -
Directory Listing
Modified
Mon Jul 25 00:05:12 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
python init file for finley module
Revision
138 -
Directory Listing
Modified
Mon Jul 25 00:04:06 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
fix linking to escript/finley libraries from esys python directories
Revision
137 -
Directory Listing
Modified
Fri Jul 22 07:07:20 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed all references to modellib module
Revision
136 -
Directory Listing
Modified
Fri Jul 22 07:06:09 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
added modellib module
Revision
135 -
Directory Listing
Modified
Fri Jul 22 07:04:52 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
makefile for modellib module
Revision
134 -
Directory Listing
Modified
Fri Jul 22 06:28:49 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
added modellib/lib/py_src
Revision
133 -
Directory Listing
Modified
Fri Jul 22 06:26:05 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removing escript/lib/py_src/modellib
Revision
132 -
Directory Listing
Modified
Fri Jul 22 06:23:18 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
.keep file for modellib/lib
Revision
131 -
Directory Listing
Modified
Fri Jul 22 06:04:55 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed default setting of L_PYTH_DIR, this must now be set on a module
by module basis in the respective module makefile
Revision
130 -
Directory Listing
Modified
Fri Jul 22 05:20:58 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
restructured python install directory
Revision
129 -
Directory Listing
Modified
Fri Jul 22 05:17:51 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed references to modellib
Revision
128 -
Directory Listing
Modified
Fri Jul 22 05:13:08 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed modellib code from escript source directory
Revision
127 -
Directory Listing
Modified
Fri Jul 22 05:11:29 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
moved modellib code to esys2/modellib/py_src
Revision
126 -
Directory Listing
Modified
Fri Jul 22 03:53:08 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-22
Revision
125 -
Directory Listing
Modified
Fri Jul 22 03:52:49 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-22
CVg: Committing in
Revision
124 -
Directory Listing
Modified
Wed Jul 20 06:14:58 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
added ln(data) style wrapper for data.ln() - also added corresponding
implementation of Ln_Symbol class (not sure if this is right though)
Revision
123 -
Directory Listing
Modified
Fri Jul 8 04:08:13 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-08
Revision
122 -
Directory Listing
Modified
Thu Jun 9 05:38:05 2005 UTC
(17 years, 9 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-06-09
Revision
121 -
Directory Listing
Modified
Fri May 6 04:26:16 2005 UTC
(17 years, 10 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-05-06
Revision
120 -
Directory Listing
Modified
Tue Apr 12 04:46:34 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
Missed mk in merge back to main trunk - whoops!
Revision
119 -
Directory Listing
Modified
Tue Apr 12 04:45:05 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
118 -
Directory Listing
Modified
Tue Apr 12 04:44:55 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-04-12
Revision
117 -
Directory Listing
Modified
Fri Apr 1 05:48:57 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
116 -
Directory Listing
Modified
Fri Apr 1 05:48:48 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-04-01
CVg: Committing in .
Revision
115 -
Directory Listing
Modified
Fri Mar 4 07:12:47 2005 UTC
(18 years ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
114 -
Directory Listing
Modified
Fri Mar 4 07:12:37 2005 UTC
(18 years ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-03-04
Revision
113 -
Directory Listing
Modified
Mon Feb 28 07:06:33 2005 UTC
(18 years ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
112 -
Directory Listing
Modified
Mon Feb 28 07:06:23 2005 UTC
(18 years ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-02-28
Revision
111 -
Directory Listing
Modified
Mon Feb 14 05:17:48 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
expanded output message to indicate location of file installation
Revision
110 -
Directory Listing
Modified
Mon Feb 14 04:14:42 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
109 -
Directory Listing
Modified
Mon Feb 14 04:14:35 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
commit of branch dev-01 back to main trunk on 2005-02-14
Revision
108 -
Directory Listing
Modified
Thu Jan 27 06:21:59 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
107 -
Directory Listing
Modified
Thu Jan 27 06:21:48 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
commit of branch dev-01 back to main trunk on 2005-01-27
Revision
106 -
Directory Listing
Modified
Thu Dec 23 07:20:12 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
105 -
Directory Listing
Modified
Thu Dec 23 07:20:07 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
commit of dev-01 branch back to main trunk on 2004-12-23
Revision
104 -
Directory Listing
Modified
Fri Dec 17 07:43:12 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
103 -
Directory Listing
Modified
Fri Dec 17 07:43:04 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
merge of dev-01 branch back to main trunk on 2004-12-17
Revision
102 -
Directory Listing
Modified
Wed Dec 15 07:08:39 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
101 -
Directory Listing
Modified
Wed Dec 15 07:08:18 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
merging dev-01 branch to main trunk on 2004-12-15
Revision
100 -
Directory Listing
Modified
Wed Dec 15 03:48:48 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
99 -
Directory Listing
Modified
Wed Dec 15 03:48:38 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
backing out previous commit
Revision
98 -
Directory Listing
Modified
Wed Dec 15 03:43:28 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
backed out previous update
Revision
97 -
Directory Listing
Modified
Tue Dec 14 05:39:33 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
96 -
Directory Listing
Modified
Tue Dec 14 05:39:20 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
merge from dev-01 branch back to main trunk on 2004-12-14
Revision
95 -
Directory Listing
Modified
Wed Oct 27 00:53:16 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
disabled testSubtraction test for now - requires setTaggedValue interface
which takes Data object as argument
Revision
94 -
Directory Listing
Modified
Wed Oct 27 00:45:54 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
93 -
Directory Listing
Modified
Wed Oct 27 00:42:03 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
trying to fix cvs permissions wierdness
Revision
92 -
Directory Listing
Modified
Wed Oct 27 00:36:38 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
readded these
Revision
91 -
Directory Listing
Modified
Wed Oct 27 00:34:08 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
still trying to fix cvs issue
Revision
90 -
Directory Listing
Modified
Wed Oct 27 00:31:36 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
removed non-boost version of setTaggedValue - breaks escript.cpp
Revision
89 -
Directory Listing
Modified
Wed Oct 27 00:30:36 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
fixing cvs issue
Revision
88 -
Directory Listing
Modified
Wed Oct 27 00:23:36 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
fixed minor syntax error
Revision
87 -
Directory Listing
Modified
Wed Oct 27 00:01:26 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
86 -
Directory Listing
Modified
Wed Oct 27 00:01:21 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
added dummy file to force CVS to keep directory in repository
Revision
85 -
Directory Listing
Modified
Tue Oct 26 23:56:48 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
reset default make targets
Revision
84 -
Directory Listing
Modified
Tue Oct 26 23:51:56 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
83 -
Directory Listing
Modified
Tue Oct 26 23:51:50 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
added dummy file to ensure CVS keeps this directory in the repository
Revision
82 -
Directory Listing
Modified
Tue Oct 26 06:53:54 2004 UTC
(18 years, 4 months ago)
by
jgs
Original Path:
trunk
Initial revision
Revision
81 -
Directory Listing
Added
Tue Oct 26 06:53:54 2004 UTC
(18 years, 4 months ago)
by
(unknown author)
Original Path:
trunk
New repository initialized by cvs2svn.