Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Many modifications in order to make a more efficient library for GNode creation
authorSébastien Miquée <sebastien.miquee@univ-fcomte.fr>
Sun, 7 Feb 2010 14:00:51 +0000 (15:00 +0100)
committerSébastien Miquée <sebastien.miquee@univ-fcomte.fr>
Sun, 7 Feb 2010 14:00:51 +0000 (15:00 +0100)
commit1943cd46cee3f63424e965e9e58f9779a5505cec
tree034df01b3cf158b44abb0d23989dd998897f783c
parent298037f8cd008787c5cfe493ba582ac64bbbc3a2
Many modifications in order to make a more efficient library for GNode creation
and graph management.

1) The xtream jar was uncompressed in order to use classes directly (Java
does not include jar within another jar)

2) The sigar library was deleted. Indeed, some problems with its use were difficult
to solve and another more important problem was found. With this library we obtain
system information, like processor frequency or amount of memory, but this not the
real information we need. Indeed, as we execute our program in a JVM, we should only
take into consideration what the JVM provide to us. So all information retrieved are
information about the JVM, which are: amount of available computing cores and memory
and the MegaFlops of a computing core.

3) In the grid class was added the computation of the heterogeneity degree of the
plate-form. This would be useful in designing a mapping algorithm which takes care
about this parameter.
369 files changed:
Makefile
Manifest
com/thoughtworks/xstream/InitializationException.class [new file with mode: 0644]
com/thoughtworks/xstream/MarshallingStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/XStream$1.class [new file with mode: 0644]
com/thoughtworks/xstream/XStream$2.class [new file with mode: 0644]
com/thoughtworks/xstream/XStream$3.class [new file with mode: 0644]
com/thoughtworks/xstream/XStream$InitializationException.class [new file with mode: 0644]
com/thoughtworks/xstream/XStream.class [new file with mode: 0644]
com/thoughtworks/xstream/XStreamException.class [new file with mode: 0644]
com/thoughtworks/xstream/XStreamer.class [new file with mode: 0644]
com/thoughtworks/xstream/alias/CannotResolveClassException.class [new file with mode: 0644]
com/thoughtworks/xstream/alias/ClassMapper$Null.class [new file with mode: 0644]
com/thoughtworks/xstream/alias/ClassMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/alias/NameMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/AnnotationProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/AnnotationReflectionConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/Annotations.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamAlias.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamAsAttribute.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamContainedType.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamConverters.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamImplicit.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamImplicitCollection.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamInclude.class [new file with mode: 0644]
com/thoughtworks/xstream/annotations/XStreamOmitField.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/ConversionException.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/Converter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/ConverterLookup.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/ConverterMatcher.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/ConverterRegistry.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/DataHolder.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/ErrorWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/MarshallingContext.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/SingleValueConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/SingleValueConverterWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/UnmarshallingContext.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/AbstractBasicConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/AbstractSingleValueConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/BigDecimalConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/BigIntegerConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/BooleanConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/ByteConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/CharConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/DateConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/DoubleConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/FloatConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/IntConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/LongConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/NullConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/ShortConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/StringBufferConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/StringBuilderConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/StringConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/ThreadSafeSimpleDateFormat.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/URLConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/basic/UUIDConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/ArrayConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/BitSetConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/CharArrayConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/CollectionConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/MapConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/PropertiesConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeMapConverter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeMapConverter$PresortedMap$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeMapConverter$PresortedMap$ArraySet.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeMapConverter$PresortedMap.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeMapConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeSetConverter$PresortedSet.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/collections/TreeSetConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/enums/EnumConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/enums/EnumMapConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/enums/EnumSetConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/CharsetConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/ColorConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/CurrencyConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/DurationConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/FileConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/FontConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/JavaClassConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/JavaMethodConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/LocaleConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/RegexPatternConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/SqlDateConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/SqlTimeConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/SubjectConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/TextAttributeConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/ThrowableConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/extended/ToStringConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/BeanProperty.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/BeanProvider$Visitor.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/BeanProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/JavaBeanConverter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/JavaBeanConverter$DuplicateFieldException.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/PropertyDictionary$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/PropertyDictionary$BeanPropertyComparator.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/PropertyDictionary$OrderRetainingMap.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/PropertyDictionary$PropertyKey.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/javabean/PropertyDictionary.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter$2.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter$DuplicateFieldException.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter$SeenFields.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter$CGLIBFilteringReflectionProvider$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter$CGLIBFilteringReflectionProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter$ReverseEngineeredCallbackFilter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter$ReverseEngineeringInvocationHandler.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ExternalizableConverter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ExternalizableConverter$2.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/FieldDictionary.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/FieldKey.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/FieldKeySorter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ObjectAccessException.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ReflectionConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ReflectionProvider$Visitor.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ReflectionProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializableConverter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializableConverter$2$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializableConverter$2.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializableConverter$UnserializableParentsReflectionProvider$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializableConverter$UnserializableParentsReflectionProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializableConverter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter$FieldComparator.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.class [new file with mode: 0644]
com/thoughtworks/xstream/core/AbstractReferenceMarshaller$ReferencedImplicitElementException.class [new file with mode: 0644]
com/thoughtworks/xstream/core/AbstractReferenceMarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/core/BaseException.class [new file with mode: 0644]
com/thoughtworks/xstream/core/DefaultConverterLookup.class [new file with mode: 0644]
com/thoughtworks/xstream/core/JVM.class [new file with mode: 0644]
com/thoughtworks/xstream/core/MapBackedDataHolder.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByIdMarshaller$IDGenerator.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByIdMarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/SequenceGenerator.class [new file with mode: 0644]
com/thoughtworks/xstream/core/TreeMarshaller$CircularReferenceException.class [new file with mode: 0644]
com/thoughtworks/xstream/core/TreeMarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/TreeMarshallingStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/core/TreeUnmarshaller.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/Base64Encoder.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ClassLoaderReference$Replacement.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ClassLoaderReference.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CompositeClassLoader.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectInputStream$CustomGetField.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectInputStream$StreamCallback.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectInputStream.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectOutputStream$1.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectOutputStream$CustomPutField.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectOutputStream$StreamCallback.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/CustomObjectOutputStream.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/DependencyInjectionFactory$1.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/DependencyInjectionFactory$TypedValue.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/DependencyInjectionFactory.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/FastField.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/FastStack.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/Fields.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/HierarchicalStreams.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ObjectIdDictionary$IdWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ObjectIdDictionary$WeakIdWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ObjectIdDictionary$Wrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ObjectIdDictionary.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/OrderRetainingMap$1.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/OrderRetainingMap$ArraySet.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/OrderRetainingMap.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/Pool$Factory.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/Pool.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/Primitives.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/PrioritizedList$PrioritizedItem.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/PrioritizedList$PrioritizedItemIterator.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/PrioritizedList.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/QuickWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor$1.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat$1.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/TypedNull.class [new file with mode: 0644]
com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/AttributeNameIterator.class [new file with mode: 0644]
com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.class [new file with mode: 0644]
com/thoughtworks/xstream/io/HierarchicalStreamDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/HierarchicalStreamReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/HierarchicalStreamWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/ReaderWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/io/StatefulWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/StreamException.class [new file with mode: 0644]
com/thoughtworks/xstream/io/WriterWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/BinaryStreamReader$1.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/BinaryStreamReader$IdRegistry.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/BinaryStreamReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/BinaryStreamWriter$1.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/BinaryStreamWriter$IdRegistry.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/BinaryStreamWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/ReaderDepthState$1.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/ReaderDepthState$Attribute.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/ReaderDepthState$State.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/ReaderDepthState.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token$Attribute.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token$EndNode.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token$Formatter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token$MapIdToValue.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token$StartNode.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token$Value.class [new file with mode: 0644]
com/thoughtworks/xstream/io/binary/Token.class [new file with mode: 0644]
com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.class [new file with mode: 0644]
com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/json/JettisonStaxWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/json/JsonWriter$Node.class [new file with mode: 0644]
com/thoughtworks/xstream/io/json/JsonWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/path/Path.class [new file with mode: 0644]
com/thoughtworks/xstream/io/path/PathTracker.class [new file with mode: 0644]
com/thoughtworks/xstream/io/path/PathTrackingReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/path/PathTrackingWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractDocumentReader$1.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractDocumentReader$Pointer.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractDocumentReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractPullReader$1.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractPullReader$Event.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractPullReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractXmlDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractXmlReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/AbstractXmlWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/CompactWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/DocumentReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/DocumentWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/Dom4JDriver$1.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/Dom4JDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/Dom4JReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/Dom4JWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/DomDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/DomReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/DomWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/JDomDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/JDomReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/JDomWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/PrettyPrintWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/QNameMap.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/SaxWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/StaxDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/StaxReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/StaxWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/TraxSource.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XmlFriendlyReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XomDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XomReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XomWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XppDomDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XppDomReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XppDomWriter.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XppDriver.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/XppReader.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.class [new file with mode: 0644]
com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AnnotationConfiguration.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AnnotationMapper$1.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AnnotationMapper$UnprocessedTypesSet.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AnnotationMapper$WeakHashSet.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AnnotationMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ArrayMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AttributeAliasingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/AttributeMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/CGLIBMapper$Marker.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/CGLIBMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/CachingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/CannotResolveClassException.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ClassAliasingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/DefaultMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/DynamicProxyMapper$DynamicProxy.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/DynamicProxyMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/EnumMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/FieldAliasingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ImmutableTypesMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ImplicitCollectionMapper$1.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ImplicitCollectionMapper$ImplicitCollectionMapperForClass.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ImplicitCollectionMapper$ImplicitCollectionMappingImpl.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ImplicitCollectionMapper$NamedItemType.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/LocalConversionMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/Mapper$ImplicitCollectionMapping.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/Mapper$Null.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/Mapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/MapperWrapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/OuterClassMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/PackageAliasingMapper$1.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/PackageAliasingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/mapper/XmlFriendlyMapper.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy$ValidFilenameFilter.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy$XmlMapEntriesIterator$1.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy$XmlMapEntriesIterator.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/FilePersistenceStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/FileStreamStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/PersistenceStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/StreamStrategy.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/XmlArrayList.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/XmlMap$XmlMapEntries.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/XmlMap.class [new file with mode: 0644]
com/thoughtworks/xstream/persistence/XmlSet.class [new file with mode: 0644]
lib/libsigar-amd64-freebsd-6.so [deleted file]
lib/libsigar-amd64-linux.so [deleted file]
lib/libsigar-amd64-solaris.so [deleted file]
lib/libsigar-ia64-hpux-11.sl [deleted file]
lib/libsigar-ia64-linux.so [deleted file]
lib/libsigar-pa-hpux-11.sl [deleted file]
lib/libsigar-ppc-aix-5.so [deleted file]
lib/libsigar-ppc-linux.so [deleted file]
lib/libsigar-ppc64-aix-5.so [deleted file]
lib/libsigar-ppc64-linux.so [deleted file]
lib/libsigar-s390x-linux.so [deleted file]
lib/libsigar-sparc-solaris.so [deleted file]
lib/libsigar-sparc64-solaris.so [deleted file]
lib/libsigar-universal-macosx.dylib [deleted file]
lib/libsigar-universal64-macosx.dylib [deleted file]
lib/libsigar-x86-freebsd-5.so [deleted file]
lib/libsigar-x86-freebsd-6.so [deleted file]
lib/libsigar-x86-linux.so [deleted file]
lib/libsigar-x86-solaris.so [deleted file]
lib/sigar.jar [deleted file]
lib/xstream-1.3.1.jar [deleted file]
src/and/Mapping/GNode.java
src/and/Mapping/Grid.java
src/and/Mapping/Linpack.java [new file with mode: 0644]
src/and/Mapping/Utils.java